Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(master): release 9.0.0 #306

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ The format is based on
and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [9.0.0](https://github.com/terraform-google-modules/terraform-google-bootstrap/compare/v8.0.0...v9.0.0) (2024-11-01)


### ⚠ BREAKING CHANGES

* **deps:** Update Terraform Google Provider to v6 ([#320](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/320))
* **modules:** enable cloudbuildv2 repository support on tf_cloudbuild_builder and tf_cloudbuild_workspace ([#299](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/299))

### Features

* **deps:** Update Terraform Google Provider to v6 ([#320](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/320)) ([b4ae113](https://github.com/terraform-google-modules/terraform-google-bootstrap/commit/b4ae113473592272e3acbb753cc16f45e250cf30))
* **deps:** Update Terraform Google Provider to v6 (major) ([#314](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/314)) ([cbb731d](https://github.com/terraform-google-modules/terraform-google-bootstrap/commit/cbb731d182607161813bd8ee0a47bc1351e2f6b0))
* **module:** add cloudbuild connection module ([#312](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/312)) ([f79bbc5](https://github.com/terraform-google-modules/terraform-google-bootstrap/commit/f79bbc53f0593882e552ee0e1ca4019a4db88ac7))
* **modules:** enable cloudbuildv2 repository support on tf_cloudbuild_builder and tf_cloudbuild_workspace ([#299](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/299)) ([62f5f7d](https://github.com/terraform-google-modules/terraform-google-bootstrap/commit/62f5f7d28596b74ceac9a55179f6ee29dbcab740))


### Bug Fixes

* Added new force_destroy variable to cloudbuild module. ([#304](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/304)) ([1cdce21](https://github.com/terraform-google-modules/terraform-google-bootstrap/commit/1cdce217a98c64001348ff87bc59cfc65e7bac28))
* Do not create secret versions when using Cloud Build repositores second gen ([#324](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/324)) ([a6072e0](https://github.com/terraform-google-modules/terraform-google-bootstrap/commit/a6072e0db92d976f1535dab767ad6b4331bcb4ef))
* Include cloudkms.googleapis.com API to activate when encrypt_gcs_bucket_tfstate set to true ([#302](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/302)) ([1121fa2](https://github.com/terraform-google-modules/terraform-google-bootstrap/commit/1121fa28b63673c993aee2a53e9199a440e4eefa))

## [8.0.0](https://github.com/terraform-google-modules/terraform-google-bootstrap/compare/v7.2.0...v8.0.0) (2024-05-20)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Basic usage of this module is as follows:
```hcl
module "bootstrap" {
source = "terraform-google-modules/bootstrap/google"
version = "~> 8.0"
version = "~> 9.0"

org_id = "<ORGANIZATION_ID>"
billing_account = "<BILLING_ACCOUNT_ID>"
Expand Down
2 changes: 1 addition & 1 deletion modules/cloudbuild/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Basic usage of this module is as follows:
```hcl
module "bootstrap" {
source = "terraform-google-modules/bootstrap/google//modules/cloudbuild"
version = "~> 8.0"
version = "~> 9.0"

org_id = "<ORGANIZATION_ID>"
billing_account = "<BILLING_ACCOUNT_ID>"
Expand Down
2 changes: 1 addition & 1 deletion modules/cloudbuild/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ terraform {
}

provider_meta "google" {
module_name = "blueprints/terraform/terraform-google-bootstrap:cloudbuild/v8.0.0"
module_name = "blueprints/terraform/terraform-google-bootstrap:cloudbuild/v9.0.0"
}
}
2 changes: 1 addition & 1 deletion modules/im_cloudbuild_workspace/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Basic usage of this module is as follows:
```hcl
module "im-workspace" {
source = "terraform-google-modules/bootstrap/google//modules/im_cloudbuild_workspace"
version = "~> 8.0"
version = "~> 9.0"

project_id = var.project_id
deployment_id = var.deployment_id
Expand Down
2 changes: 1 addition & 1 deletion modules/im_cloudbuild_workspace/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ terraform {
}

provider_meta "google" {
module_name = "blueprints/terraform/terraform-google-bootstrap:im_cloudbuild_workspace/v8.0.0"
module_name = "blueprints/terraform/terraform-google-bootstrap:im_cloudbuild_workspace/v9.0.0"
}
}
2 changes: 1 addition & 1 deletion modules/tf_cloudbuild_builder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Basic usage of this module is as follows:
```hcl
module "tfbuilder" {
source = "terraform-google-modules/bootstrap/google//modules/tf_cloudbuild_builder"
version = "~> 8.0"
version = "~> 9.0"

project_id = module.enabled_google_apis.project_id
dockerfile_repo_uri = "https://github.com/org/repo"
Expand Down
2 changes: 1 addition & 1 deletion modules/tf_cloudbuild_builder/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ terraform {
}

provider_meta "google" {
module_name = "blueprints/terraform/terraform-google-bootstrap:tf_cloudbuild_builder/v8.0.0"
module_name = "blueprints/terraform/terraform-google-bootstrap:tf_cloudbuild_builder/v9.0.0"
}
}
2 changes: 1 addition & 1 deletion modules/tf_cloudbuild_source/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Basic usage of this module is as follows:
```hcl
module "tf-cloudbuild-core" {
source = "terraform-google-modules/bootstrap/google//modules/tf_cloudbuild_source"
version = "~> 8.0"
version = "~> 9.0"

org_id = var.org_id
billing_account = var.billing_account
Expand Down
2 changes: 1 addition & 1 deletion modules/tf_cloudbuild_source/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ terraform {
}

provider_meta "google" {
module_name = "blueprints/terraform/terraform-google-bootstrap:tf_cloudbuild_source/v8.0.0"
module_name = "blueprints/terraform/terraform-google-bootstrap:tf_cloudbuild_source/v9.0.0"
}
}
2 changes: 1 addition & 1 deletion modules/tf_cloudbuild_workspace/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Basic usage of this module is as follows:
```hcl
module "tf-net-workspace" {
source = "terraform-google-modules/bootstrap/google//modules/tf_cloudbuild_workspace"
version = "~> 8.0"
version = "~> 9.0"
project_id = var.project_id
tf_repo_uri = "https://github.com/org/tf-config-repo"
Expand Down
2 changes: 1 addition & 1 deletion modules/tf_cloudbuild_workspace/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ terraform {
}

provider_meta "google" {
module_name = "blueprints/terraform/terraform-google-bootstrap:tf_cloudbuild_workspace/v8.0.0"
module_name = "blueprints/terraform/terraform-google-bootstrap:tf_cloudbuild_workspace/v9.0.0"
}
}
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ terraform {
}

provider_meta "google" {
module_name = "blueprints/terraform/terraform-google-bootstrap/v8.0.0"
module_name = "blueprints/terraform/terraform-google-bootstrap/v9.0.0"
}
}