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 #373

Merged
merged 1 commit into from
Dec 15, 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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ 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-cloud-storage/compare/v8.0.3...v9.0.0) (2024-12-13)


### ⚠ BREAKING CHANGES

* remove apphub_service_uri from output of simple_bucket ([#372](https://github.com/terraform-google-modules/terraform-google-cloud-storage/issues/372))

### Bug Fixes

* remove apphub_service_uri from output of simple_bucket ([#372](https://github.com/terraform-google-modules/terraform-google-cloud-storage/issues/372)) ([7459e41](https://github.com/terraform-google-modules/terraform-google-cloud-storage/commit/7459e41091602c41c486681e148b8ca7c4dc15c0))

## [8.0.3](https://github.com/terraform-google-modules/terraform-google-cloud-storage/compare/v8.0.2...v8.0.3) (2024-12-01)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Basic usage of this module is as follows:
```hcl
module "gcs_buckets" {
source = "terraform-google-modules/cloud-storage/google"
version = "~> 8.0"
version = "~> 9.0"
project_id = "<PROJECT ID>"
names = ["first", "second"]
prefix = "my-unique-prefix"
Expand Down
2 changes: 1 addition & 1 deletion metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
source:
repo: https://github.com/terraform-google-modules/terraform-google-cloud-storage.git
sourceType: git
version: 8.0.3
version: 9.0.0
actuationTool:
flavor: Terraform
version: ">= 0.13"
Expand Down
2 changes: 1 addition & 1 deletion modules/simple_bucket/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 "bucket" {
source = "terraform-google-modules/cloud-storage/google//modules/simple_bucket"
version = "~> 8.0"
version = "~> 9.0"
name = "example-bucket"
project_id = "example-project"
Expand Down
2 changes: 1 addition & 1 deletion modules/simple_bucket/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
repo: https://github.com/terraform-google-modules/terraform-google-cloud-storage.git
sourceType: git
dir: /modules/simple_bucket
version: 8.0.3
version: 9.0.0
actuationTool:
flavor: Terraform
version: ">= 0.13"
Expand Down
2 changes: 1 addition & 1 deletion modules/simple_bucket/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ terraform {
}

provider_meta "google" {
module_name = "blueprints/terraform/terraform-google-cloud-storage:simple_bucket/v8.0.3"
module_name = "blueprints/terraform/terraform-google-cloud-storage:simple_bucket/v9.0.0"
}

}
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ terraform {
}

provider_meta "google" {
module_name = "blueprints/terraform/terraform-google-cloud-storage/v8.0.3"
module_name = "blueprints/terraform/terraform-google-cloud-storage/v9.0.0"
}

}
Loading