We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c83b958 commit 48ae5dbCopy full SHA for 48ae5db
.github/workflows/terraform-apply.yml
@@ -13,7 +13,7 @@ permissions:
13
14
jobs:
15
terraform:
16
- name: 'Terraform'
+ name: 'Terraform Apply'
17
runs-on: ubuntu-latest
18
environment: development
19
defaults:
@@ -44,7 +44,7 @@ jobs:
44
TF_VAR_region: ${{ vars.REGION }}
45
46
- name: Terraform Apply
47
- run: terraform apply -input=false
+ run: terraform apply -auto-approve -input=false
48
env:
49
GOOGLE_CREDENTIALS: ${{ secrets.GOOGLE_CREDENTIALS }}
50
TF_VAR_project_id: ${{ vars.PROJECT_ID }}
.github/workflows/terraform-plan.yml
@@ -8,7 +8,7 @@ permissions:
8
9
10
11
+ name: 'Terraform Plan'
12
0 commit comments