Skip to content

Commit 67f9db5

Browse files
chore(master): release 10.0.0 (#330)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 62eb9ae commit 67f9db5

File tree

13 files changed

+24
-12
lines changed

13 files changed

+24
-12
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ The format is based on
77
and this project adheres to
88
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## [10.0.0](https://github.com/terraform-google-modules/terraform-google-bootstrap/compare/v9.0.0...v10.0.0) (2024-12-05)
11+
12+
13+
### ⚠ BREAKING CHANGES
14+
15+
* add workflow deletion protection to cloud build builder module ([#329](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/329))
16+
17+
### Features
18+
19+
* add support for custom host in gitlab ([#328](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/328)) ([62eb9ae](https://github.com/terraform-google-modules/terraform-google-bootstrap/commit/62eb9aefb17c4896e766075c05bba6a67db72cf3))
20+
* add workflow deletion protection to cloud build builder module ([#329](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/329)) ([9678d8c](https://github.com/terraform-google-modules/terraform-google-bootstrap/commit/9678d8c3f8a30f40611e03bf563cc66e9751334f))
21+
1022
## [9.0.0](https://github.com/terraform-google-modules/terraform-google-bootstrap/compare/v8.0.0...v9.0.0) (2024-11-01)
1123

1224

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Basic usage of this module is as follows:
99
```hcl
1010
module "bootstrap" {
1111
source = "terraform-google-modules/bootstrap/google"
12-
version = "~> 9.0"
12+
version = "~> 10.0"
1313
1414
org_id = "<ORGANIZATION_ID>"
1515
billing_account = "<BILLING_ACCOUNT_ID>"

modules/cloudbuild/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Basic usage of this module is as follows:
88
```hcl
99
module "bootstrap" {
1010
source = "terraform-google-modules/bootstrap/google//modules/cloudbuild"
11-
version = "~> 9.0"
11+
version = "~> 10.0"
1212
1313
org_id = "<ORGANIZATION_ID>"
1414
billing_account = "<BILLING_ACCOUNT_ID>"

modules/cloudbuild/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ terraform {
4343
}
4444

4545
provider_meta "google" {
46-
module_name = "blueprints/terraform/terraform-google-bootstrap:cloudbuild/v9.0.0"
46+
module_name = "blueprints/terraform/terraform-google-bootstrap:cloudbuild/v10.0.0"
4747
}
4848
}

modules/im_cloudbuild_workspace/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Basic usage of this module is as follows:
1414
```hcl
1515
module "im-workspace" {
1616
source = "terraform-google-modules/bootstrap/google//modules/im_cloudbuild_workspace"
17-
version = "~> 9.0"
17+
version = "~> 10.0"
1818
1919
project_id = var.project_id
2020
deployment_id = var.deployment_id

modules/im_cloudbuild_workspace/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ terraform {
3535
}
3636

3737
provider_meta "google" {
38-
module_name = "blueprints/terraform/terraform-google-bootstrap:im_cloudbuild_workspace/v9.0.0"
38+
module_name = "blueprints/terraform/terraform-google-bootstrap:im_cloudbuild_workspace/v10.0.0"
3939
}
4040
}

modules/tf_cloudbuild_builder/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Basic usage of this module is as follows:
99
```hcl
1010
module "tfbuilder" {
1111
source = "terraform-google-modules/bootstrap/google//modules/tf_cloudbuild_builder"
12-
version = "~> 9.0"
12+
version = "~> 10.0"
1313
1414
project_id = module.enabled_google_apis.project_id
1515
dockerfile_repo_uri = "https://github.com/org/repo"

modules/tf_cloudbuild_builder/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ terraform {
3131
}
3232

3333
provider_meta "google" {
34-
module_name = "blueprints/terraform/terraform-google-bootstrap:tf_cloudbuild_builder/v9.0.0"
34+
module_name = "blueprints/terraform/terraform-google-bootstrap:tf_cloudbuild_builder/v10.0.0"
3535
}
3636
}

modules/tf_cloudbuild_source/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Basic usage of this module is as follows:
77
```hcl
88
module "tf-cloudbuild-core" {
99
source = "terraform-google-modules/bootstrap/google//modules/tf_cloudbuild_source"
10-
version = "~> 9.0"
10+
version = "~> 10.0"
1111
1212
org_id = var.org_id
1313
billing_account = var.billing_account

modules/tf_cloudbuild_source/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ terraform {
3131
}
3232

3333
provider_meta "google" {
34-
module_name = "blueprints/terraform/terraform-google-bootstrap:tf_cloudbuild_source/v9.0.0"
34+
module_name = "blueprints/terraform/terraform-google-bootstrap:tf_cloudbuild_source/v10.0.0"
3535
}
3636
}

0 commit comments

Comments
 (0)