Skip to content

Commit 16bd67c

Browse files
fix(deps): Update Terraform terraform-google-modules/bootstrap/google to v7 (#1093)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Andrew Peabody <[email protected]>
1 parent 4512e5e commit 16bd67c

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

0-bootstrap/cb.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ module "gcp_projects_state_bucket" {
8686

8787
module "tf_source" {
8888
source = "terraform-google-modules/bootstrap/google//modules/tf_cloudbuild_source"
89-
version = "~> 6.4"
89+
version = "~> 7.0"
9090

9191
org_id = var.org_id
9292
folder_id = google_folder.bootstrap.id
@@ -154,7 +154,7 @@ module "tf_private_pool" {
154154

155155
module "tf_cloud_builder" {
156156
source = "terraform-google-modules/bootstrap/google//modules/tf_cloudbuild_builder"
157-
version = "~> 6.5"
157+
version = "~> 7.0"
158158

159159
project_id = module.tf_source.cloudbuild_project_id
160160
dockerfile_repo_uri = module.tf_source.csr_repos[local.cloudbuilder_repo].url
@@ -205,7 +205,7 @@ module "build_terraform_image" {
205205

206206
module "tf_workspace" {
207207
source = "terraform-google-modules/bootstrap/google//modules/tf_cloudbuild_workspace"
208-
version = "~> 6.4"
208+
version = "~> 7.0"
209209
for_each = local.granular_sa
210210

211211
project_id = module.tf_source.cloudbuild_project_id

0-bootstrap/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ resource "google_folder" "bootstrap" {
4444

4545
module "seed_bootstrap" {
4646
source = "terraform-google-modules/bootstrap/google"
47-
version = "~> 6.3"
47+
version = "~> 7.0"
4848

4949
org_id = var.org_id
5050
folder_id = google_folder.bootstrap.id

4-projects/modules/infra_pipelines/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ resource "google_storage_bucket" "cloudbuild_bucket" {
5555

5656
module "tf_workspace" {
5757
source = "terraform-google-modules/bootstrap/google//modules/tf_cloudbuild_workspace"
58-
version = "~> 6.4"
58+
version = "~> 7.0"
5959
for_each = toset(var.app_infra_repos)
6060

6161
project_id = var.cloudbuild_project_id

4-projects/modules/single_project/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
| vpc\_service\_control\_attach\_enabled | Whether the project will be attached to a VPC Service Control Perimeter | `bool` | `false` | no |
2525
| vpc\_service\_control\_perimeter\_name | The name of a VPC Service Control Perimeter to add the created project to | `string` | `null` | no |
2626
| vpc\_service\_control\_sleep\_duration | The duration to sleep in seconds before adding the project to a shared VPC after the project is added to the VPC Service Control Perimeter | `string` | `"5s"` | no |
27-
| vpc\_type | The type of VPC to attach the project to. Possible options are base or restricted. | `string` | `""` | no |
27+
| vpc\_type | The type of VPC to attach the project to. Possible options are base or restricted. | `string` | `null` | no |
2828

2929
## Outputs
3030

4-projects/modules/single_project/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ variable "environment" {
7575
variable "vpc_type" {
7676
description = "The type of VPC to attach the project to. Possible options are base or restricted."
7777
type = string
78-
default = ""
78+
default = null
7979
}
8080

8181
variable "shared_vpc_host_project_id" {

0 commit comments

Comments
 (0)