Skip to content

Commit

Permalink
chore(master): release 8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
release-please[bot] authored Oct 17, 2024
1 parent 209d5e3 commit 924d6c8
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 6 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ The format is based on
and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [8.0.0](https://github.com/terraform-google-modules/terraform-google-cloud-storage/compare/v7.0.0...v8.0.0) (2024-10-17)


### ⚠ BREAKING CHANGES

* fix count invalid argument on simple bucket ([#355](https://github.com/terraform-google-modules/terraform-google-cloud-storage/issues/355))

### Features

* Add Apphub URI output to cloud storage ([#358](https://github.com/terraform-google-modules/terraform-google-cloud-storage/issues/358)) ([209d5e3](https://github.com/terraform-google-modules/terraform-google-cloud-storage/commit/209d5e3ec29580fd6c0f3eecab5f5b020159605a))


### Bug Fixes

* fix count invalid argument on simple bucket ([#355](https://github.com/terraform-google-modules/terraform-google-cloud-storage/issues/355)) ([8fe9a7e](https://github.com/terraform-google-modules/terraform-google-cloud-storage/commit/8fe9a7e1ce9dc8d068b4bc1f36c53281e18090b8))

## [7.0.0](https://github.com/terraform-google-modules/terraform-google-cloud-storage/compare/v6.1.0...v7.0.0) (2024-10-14)


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 = "~> 7.0"
version = "~> 8.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: 7.0.0
version: 8.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 = "~> 7.0"
version = "~> 8.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: 7.0.0
version: 8.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/v7.0.0"
module_name = "blueprints/terraform/terraform-google-cloud-storage:simple_bucket/v8.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/v7.0.0"
module_name = "blueprints/terraform/terraform-google-cloud-storage/v8.0.0"
}

}

0 comments on commit 924d6c8

Please sign in to comment.