Skip to content

Commit

Permalink
Update terraform_apply.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
arnol377 committed Oct 16, 2024
1 parent b4ffddb commit 74a53f8
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/terraform_apply.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
outputs:
commit_sha: "${{ steps.git_show.utputs.commit_sha }}"
cache_key: ${{ steps.terraform_init.outputs.s3_upload_path }}
github_token: ${{ steps.github_credentials.outputs.github_token }}
aws_access_key_id: ${{ steps.aws_auth.outputs.aws_access_key_id }}
aws_secret_access_key: ${{ steps.aws_auth.outputs.aws_secret_access_key }}
aws_session_token: ${{ steps.aws_auth.outputs.aws_session_token }}

runs-on: ["229685449397"]

Expand Down Expand Up @@ -111,10 +115,10 @@ jobs:
terraform_wrapper: false
cache_key: ${{ needs.Plan.outputs.cache_key }}
env:
AWS_ACCESS_KEY_ID: ${{ steps.aws_auth.outputs.aws_access_key_id }}
AWS_SECRET_ACCESS_KEY: ${{ steps.aws_auth.outputs.aws_secret_access_key }}
AWS_SESSION_TOKEN: ${{ steps.aws_auth.outputs.aws_session_token }}
GITHUB_TOKEN: ${{ steps.github_credentials.outputs.github_token }}
AWS_ACCESS_KEY_ID: ${{ needs.Plan.outputs.aws_access_key_id }}
AWS_SECRET_ACCESS_KEY: ${{ needs.Plan.outputs.aws_secret_access_key }}
AWS_SESSION_TOKEN: ${{ needs.Plan.outputs.aws_session_token }}
GITHUB_TOKEN: ${{ needs.Plan.outputs.github_token }}
GITHUB_OWNER: ${{ github.repository_owner }}
GITHUB_BASE_URL: "${{ github.server_url }}/"
HTTP_PROXY: http://proxy.tco.census.gov:3128
Expand Down

0 comments on commit 74a53f8

Please sign in to comment.