Skip to content

Commit 177e6be

Browse files
chore(master): release 8.0.0 (#288)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 7c8477b commit 177e6be

File tree

13 files changed

+31
-12
lines changed

13 files changed

+31
-12
lines changed

CHANGELOG.md

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

10+
## [8.0.0](https://github.com/terraform-google-modules/terraform-google-bootstrap/compare/v7.2.0...v8.0.0) (2024-05-20)
11+
12+
13+
### ⚠ BREAKING CHANGES
14+
15+
* **deps:** Update Terraform terraform-google-modules/project-factory/google to v15 ([#290](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/290))
16+
* **deps:** Update Terraform terraform-google-modules/cloud-storage/google to v6 ([#291](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/291))
17+
18+
### Features
19+
20+
* Set project field on secret IAM member ([#287](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/287)) ([0efe030](https://github.com/terraform-google-modules/terraform-google-bootstrap/commit/0efe03022c7893614ead441e29f513880bac6337))
21+
22+
23+
### Bug Fixes
24+
25+
* **deps:** Update Terraform terraform-google-modules/cloud-storage/google to v6 ([#291](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/291)) ([3854ea6](https://github.com/terraform-google-modules/terraform-google-bootstrap/commit/3854ea6d98fa93184d80c650ba9ca6b04ad43297))
26+
* **deps:** Update Terraform terraform-google-modules/project-factory/google to v15 ([#290](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/290)) ([eeffa37](https://github.com/terraform-google-modules/terraform-google-bootstrap/commit/eeffa37122b00c25670ca68b438e9c1f4bc712e8))
27+
* enable create_ignore for service accounts ([#292](https://github.com/terraform-google-modules/terraform-google-bootstrap/issues/292)) ([7c8477b](https://github.com/terraform-google-modules/terraform-google-bootstrap/commit/7c8477bd6137745176d27a4e092c997b0da64149))
28+
1029
## [7.2.0](https://github.com/terraform-google-modules/terraform-google-bootstrap/compare/v7.1.0...v7.2.0) (2024-04-01)
1130

1231

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 = "~> 7.2"
12+
version = "~> 8.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 = "~> 7.2"
11+
version = "~> 8.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/v7.2.0"
46+
module_name = "blueprints/terraform/terraform-google-bootstrap:cloudbuild/v8.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 = "~> 7.2"
17+
version = "~> 8.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/v7.2.0"
38+
module_name = "blueprints/terraform/terraform-google-bootstrap:im_cloudbuild_workspace/v8.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 = "~> 7.2"
12+
version = "~> 8.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/v7.2.0"
34+
module_name = "blueprints/terraform/terraform-google-bootstrap:tf_cloudbuild_builder/v8.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 = "~> 7.2"
10+
version = "~> 8.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/v7.2.0"
34+
module_name = "blueprints/terraform/terraform-google-bootstrap:tf_cloudbuild_source/v8.0.0"
3535
}
3636
}

0 commit comments

Comments
 (0)