Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/main-terraform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ on:
working_directory:
required: true
type: string
staging_tfvars_json:
required: true
type: string

permissions:
id-token: write
Expand Down Expand Up @@ -62,6 +59,7 @@ jobs:
- name: Terraform Staging Apply
id: apply-staging
run: terraform apply -auto-approve -input=false -var-file=staging.tfvars.json
timeout-minutes: 15
env:
TF_WORKSPACE: staging
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 1 addition & 3 deletions .github/workflows/release-terraform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ on:
working_directory:
required: true
type: string
prod_tfvars_json:
required: true
type: string

permissions:
id-token: write
Expand Down Expand Up @@ -62,6 +59,7 @@ jobs:
- name: Terraform Prod Apply
id: apply-prod
run: terraform apply -auto-approve -input=false -var-file=prod.tfvars.json
timeout-minutes: 15
env:
TF_WORKSPACE: prod
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}