Skip to content

Commit

Permalink
fix: set 3-networks service account token lifetime to 1200s (#432)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-cit authored Apr 16, 2021
1 parent dd28deb commit 76efbe8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 3-networks/envs/development/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ data "google_service_account_access_token" "default" {
provider = google.impersonate
target_service_account = local.tf_sa
scopes = ["userinfo-email", "cloud-platform"]
lifetime = "600s"
lifetime = "1200s"
}

/******************************************
Expand Down
2 changes: 1 addition & 1 deletion 3-networks/envs/non-production/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ data "google_service_account_access_token" "default" {
provider = google.impersonate
target_service_account = local.tf_sa
scopes = ["userinfo-email", "cloud-platform"]
lifetime = "600s"
lifetime = "1200s"
}

/******************************************
Expand Down
2 changes: 1 addition & 1 deletion 3-networks/envs/production/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ data "google_service_account_access_token" "default" {
provider = google.impersonate
target_service_account = local.tf_sa
scopes = ["userinfo-email", "cloud-platform"]
lifetime = "600s"
lifetime = "1200s"
}

/******************************************
Expand Down
2 changes: 1 addition & 1 deletion 3-networks/envs/shared/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ data "google_service_account_access_token" "default" {
provider = google.impersonate
target_service_account = local.tf_sa
scopes = ["userinfo-email", "cloud-platform"]
lifetime = "600s"
lifetime = "1200s"
}

/******************************************
Expand Down

0 comments on commit 76efbe8

Please sign in to comment.