Skip to content

Commit 3e2ca41

Browse files
authored
fix: make first gcloud builds submit wait for the creation of the default cloud build bucket (terraform-google-modules#719)
* make first gcloud builds submit wait for the creation of the default cloud build bucket * fix partial bump of hashicorp/random provider from 2.3 to 3.1
1 parent f2d7bc8 commit 3e2ca41

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

4-projects/modules/infra_pipelines/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,8 @@ resource "null_resource" "cloudbuild_terraform_builder" {
160160
EOT
161161
}
162162
depends_on = [
163-
google_artifact_registry_repository_iam_member.terraform-image-iam
163+
google_artifact_registry_repository_iam_member.terraform-image-iam,
164+
google_storage_bucket_iam_member.cloudbuild_artifacts_iam
164165
]
165166
}
166167

5-app-infra/business_unit_1/development/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ terraform {
3636

3737
random = {
3838
source = "hashicorp/random"
39-
version = "~> 2.3"
39+
version = "~> 3.1"
4040
}
4141

4242
}

5-app-infra/business_unit_1/non-production/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ terraform {
3636

3737
random = {
3838
source = "hashicorp/random"
39-
version = "~> 2.3"
39+
version = "~> 3.1"
4040
}
4141

4242
}

5-app-infra/business_unit_1/production/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ terraform {
3636

3737
random = {
3838
source = "hashicorp/random"
39-
version = "~> 2.3"
39+
version = "~> 3.1"
4040
}
4141

4242
}

0 commit comments

Comments
 (0)