Skip to content

Commit

Permalink
fix: add explicit dependency for GCS service account (#128)
Browse files Browse the repository at this point in the history
* fix: add explicit dependency for GCS service account

* Update main.tf
  • Loading branch information
morgante committed Oct 15, 2021
1 parent c1ee35e commit 62adacc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ resource "google_service_account" "org_terraform" {
***********************************************/
data "google_storage_project_service_account" "gcs_account" {
project = module.seed_project.project_id

depends_on = [
module.seed_project.project_id
]
}

module "kms" {
Expand Down

0 comments on commit 62adacc

Please sign in to comment.