Skip to content

Commit 0a144de

Browse files
author
Pedro Mealha
authored
Merge pull request #8 from vimeda/update-tf
remove unneeded input
2 parents 2966d85 + d868c3a commit 0a144de

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/main-terraform.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ on:
1313
working_directory:
1414
required: true
1515
type: string
16-
staging_tfvars_json:
17-
required: true
18-
type: string
1916

2017
permissions:
2118
id-token: write
@@ -62,6 +59,7 @@ jobs:
6259
- name: Terraform Staging Apply
6360
id: apply-staging
6461
run: terraform apply -auto-approve -input=false -var-file=staging.tfvars.json
62+
timeout-minutes: 15
6563
env:
6664
TF_WORKSPACE: staging
6765
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release-terraform.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ on:
1313
working_directory:
1414
required: true
1515
type: string
16-
prod_tfvars_json:
17-
required: true
18-
type: string
1916

2017
permissions:
2118
id-token: write
@@ -62,6 +59,7 @@ jobs:
6259
- name: Terraform Prod Apply
6360
id: apply-prod
6461
run: terraform apply -auto-approve -input=false -var-file=prod.tfvars.json
62+
timeout-minutes: 15
6563
env:
6664
TF_WORKSPACE: prod
6765
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)