Skip to content

Commit

Permalink
removed unneeded variable
Browse files Browse the repository at this point in the history
  • Loading branch information
MennaTullahTaha committed May 2, 2024
1 parent 6fde364 commit a8e26b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ jobs:

# Generates an execution plan for Terraform
- name: Terraform Plan
run: terraform plan -var 'auth_token=$(gcloud auth print-access-token)'
run: terraform plan -var 'auth_token=$(gcloud auth application-default print-access-token)'

# Apply terraform
- name: Terraform Apply
run: terraform apply -var 'auth_token=$(gcloud auth print-access-token)'
run: terraform apply -var 'auth_token=$(gcloud auth application-default print-access-token)'
- name: Terraform output
run: terraform output

Expand Down
1 change: 0 additions & 1 deletion providers.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
provider "google" {
credentials = var.gcp_credentials
project = var.gcp_project_id
region = "europe-west10"
access_token = var.auth_token
Expand Down

0 comments on commit a8e26b6

Please sign in to comment.