From a523d5e7d14a30289d0782f20420c06f1bfb8343 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Mon, 10 Jun 2024 13:14:48 -0700 Subject: [PATCH] chore(main): release 0.3.0 (#65) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Andrew Peabody --- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- metadata.yaml | 2 +- versions.tf | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04c9c3b..4dbeb7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). This changelog is generated automatically based on [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). +## [0.3.0](https://github.com/GoogleCloudPlatform/terraform-google-secret-manager/compare/v0.2.0...v0.3.0) (2024-06-10) + + +### Features + +* add support to specify secret accessors ([#66](https://github.com/GoogleCloudPlatform/terraform-google-secret-manager/issues/66)) ([a61b2ae](https://github.com/GoogleCloudPlatform/terraform-google-secret-manager/commit/a61b2aea5b7962a7a7ad9d7fe8d8c167ef620430)) +* Make secrets data optional ([#61](https://github.com/GoogleCloudPlatform/terraform-google-secret-manager/issues/61)) ([5f78bea](https://github.com/GoogleCloudPlatform/terraform-google-secret-manager/commit/5f78bea92bbd13734e3488c18e6edc973ff46bd3)) + + +### Bug Fixes + +* changed deprecated auto replication attribute ([#31](https://github.com/GoogleCloudPlatform/terraform-google-secret-manager/issues/31)) ([6beaa66](https://github.com/GoogleCloudPlatform/terraform-google-secret-manager/commit/6beaa663d4c4ed254fb9433664261846891f2dd5)) +* google_secret_manager_secret_iam_binding.binding for_each ([#72](https://github.com/GoogleCloudPlatform/terraform-google-secret-manager/issues/72)) ([4494e35](https://github.com/GoogleCloudPlatform/terraform-google-secret-manager/commit/4494e354495771294bb660f01360211ce4b3e73f)) + ## [0.2.0](https://github.com/GoogleCloudPlatform/terraform-google-secret-manager/compare/v0.1.1...v0.2.0) (2024-02-13) diff --git a/README.md b/README.md index f7e2c48..43395c4 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Basic usage of this module is as follows: ```hcl module "secret-manager" { source = "GoogleCloudPlatform/secret-manager/google" - version = "~> 0.2" + version = "~> 0.3" project_id = var.project_id secrets = [ { diff --git a/metadata.yaml b/metadata.yaml index fe80c91..8c01c08 100644 --- a/metadata.yaml +++ b/metadata.yaml @@ -23,7 +23,7 @@ spec: source: repo: https://github.com/GoogleCloudPlatform/terraform-google-secret-manager.git sourceType: git - version: 0.2.0 + version: 0.3.0 actuationTool: type: Terraform version: '>= 0.13' diff --git a/versions.tf b/versions.tf index 47ed84d..740bf4d 100644 --- a/versions.tf +++ b/versions.tf @@ -28,6 +28,6 @@ terraform { } provider_meta "google" { - module_name = "blueprints/terraform/secret-manager/v0.2.0" + module_name = "blueprints/terraform/secret-manager/v0.3.0" } }