Skip to content

Commit c1e00e0

Browse files
chore(deps): Update Terraform terraform-google-modules/bootstrap/google to v11 (#346)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 99b25e1 commit c1e00e0

File tree

14 files changed

+19
-19
lines changed
  • examples
    • cloudbuild_enabled
    • cloudbuild_repo_connection_github
    • cloudbuild_repo_connection_gitlab
    • im_cloudbuild_workspace_github
    • im_cloudbuild_workspace_gitlab
    • simple-folder
    • simple
    • tf_cloudbuild_builder_simple_github
    • tf_cloudbuild_builder_simple_gitlab
    • tf_cloudbuild_builder_simple
    • tf_cloudbuild_source_simple
    • tf_cloudbuild_workspace_simple_github
    • tf_cloudbuild_workspace_simple_gitlab
    • tf_cloudbuild_workspace_simple

14 files changed

+19
-19
lines changed

examples/cloudbuild_enabled/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
module "seed_bootstrap" {
2222
source = "terraform-google-modules/bootstrap/google"
23-
version = "~> 10.0"
23+
version = "~> 11.0"
2424

2525
org_id = var.org_id
2626
billing_account = var.billing_account
@@ -36,7 +36,7 @@ module "seed_bootstrap" {
3636

3737
module "cloudbuild_bootstrap" {
3838
source = "terraform-google-modules/bootstrap/google//modules/cloudbuild"
39-
version = "~> 10.0"
39+
version = "~> 11.0"
4040

4141
org_id = var.org_id
4242
billing_account = var.billing_account

examples/cloudbuild_repo_connection_github/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "git_repo_connection" {
1818
source = "terraform-google-modules/bootstrap/google//modules/cloudbuild_repo_connection"
19-
version = "~> 10.0"
19+
version = "~> 11.0"
2020

2121
project_id = var.project_id
2222
connection_config = {

examples/cloudbuild_repo_connection_gitlab/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "git_repo_connection" {
1818
source = "terraform-google-modules/bootstrap/google//modules/cloudbuild_repo_connection"
19-
version = "~> 10.0"
19+
version = "~> 11.0"
2020

2121
project_id = var.project_id
2222
connection_config = {

examples/im_cloudbuild_workspace_github/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "im_workspace" {
1818
source = "terraform-google-modules/bootstrap/google//modules/im_cloudbuild_workspace"
19-
version = "~> 10.0"
19+
version = "~> 11.0"
2020

2121
project_id = var.project_id
2222
deployment_id = "im-example-github-deployment"

examples/im_cloudbuild_workspace_gitlab/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "im_workspace" {
1818
source = "terraform-google-modules/bootstrap/google//modules/im_cloudbuild_workspace"
19-
version = "~> 10.0"
19+
version = "~> 11.0"
2020

2121
project_id = var.project_id
2222
deployment_id = "im-example-gitlab-deployment"

examples/simple-folder/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
module "seed_bootstrap" {
2222
source = "terraform-google-modules/bootstrap/google"
23-
version = "~> 10.0"
23+
version = "~> 11.0"
2424

2525
org_id = var.org_id
2626
parent_folder = var.parent

examples/simple/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
module "seed_bootstrap" {
2222
source = "terraform-google-modules/bootstrap/google"
23-
version = "~> 10.0"
23+
version = "~> 11.0"
2424

2525
org_id = var.org_id
2626
billing_account = var.billing_account

examples/tf_cloudbuild_builder_simple/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "cloudbuilder" {
1818
source = "terraform-google-modules/bootstrap/google//modules/tf_cloudbuild_builder"
19-
version = "~> 10.0"
19+
version = "~> 11.0"
2020

2121
project_id = module.enabled_google_apis.project_id
2222
dockerfile_repo_uri = google_sourcerepo_repository.builder_dockerfile_repo.url

examples/tf_cloudbuild_builder_simple_github/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ locals {
2626

2727
module "cloudbuilder" {
2828
source = "terraform-google-modules/bootstrap/google//modules/tf_cloudbuild_builder"
29-
version = "~> 10.0"
29+
version = "~> 11.0"
3030

3131
project_id = module.enabled_google_apis.project_id
3232
dockerfile_repo_uri = module.git_repo_connection.cloud_build_repositories_2nd_gen_repositories["test_repo"].id
@@ -56,7 +56,7 @@ resource "time_sleep" "propagation" {
5656

5757
module "git_repo_connection" {
5858
source = "terraform-google-modules/bootstrap/google//modules/cloudbuild_repo_connection"
59-
version = "~> 10.0"
59+
version = "~> 11.0"
6060

6161
project_id = var.project_id
6262
connection_config = {

examples/tf_cloudbuild_builder_simple_gitlab/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ locals {
2626

2727
module "cloudbuilder" {
2828
source = "terraform-google-modules/bootstrap/google//modules/tf_cloudbuild_builder"
29-
version = "~> 10.0"
29+
version = "~> 11.0"
3030

3131
project_id = module.enabled_google_apis.project_id
3232
dockerfile_repo_uri = module.git_repo_connection.cloud_build_repositories_2nd_gen_repositories["test_repo"].id
@@ -59,7 +59,7 @@ resource "time_sleep" "propagation" {
5959

6060
module "git_repo_connection" {
6161
source = "terraform-google-modules/bootstrap/google//modules/cloudbuild_repo_connection"
62-
version = "~> 10.0"
62+
version = "~> 11.0"
6363

6464
project_id = var.project_id
6565
connection_config = {

0 commit comments

Comments
 (0)