Skip to content

Commit 48ae5db

Browse files
committed
added names to the workflows and -auto-approve flag to apply
1 parent c83b958 commit 48ae5db

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/terraform-apply.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
terraform:
16-
name: 'Terraform'
16+
name: 'Terraform Apply'
1717
runs-on: ubuntu-latest
1818
environment: development
1919
defaults:
@@ -44,7 +44,7 @@ jobs:
4444
TF_VAR_region: ${{ vars.REGION }}
4545

4646
- name: Terraform Apply
47-
run: terraform apply -input=false
47+
run: terraform apply -auto-approve -input=false
4848
env:
4949
GOOGLE_CREDENTIALS: ${{ secrets.GOOGLE_CREDENTIALS }}
5050
TF_VAR_project_id: ${{ vars.PROJECT_ID }}

.github/workflows/terraform-plan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88

99
jobs:
1010
terraform:
11-
name: 'Terraform'
11+
name: 'Terraform Plan'
1212
runs-on: ubuntu-latest
1313
environment: development
1414
defaults:

0 commit comments

Comments
 (0)