diff --git a/CHANGELOG.md b/CHANGELOG.md index 2046938..26b03af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ 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-netapp-volumes/compare/v0.2.0...v0.3.0) (2024-03-05) + + +### Features + +* Add vpc network project_id for shared VPC ([#13](https://github.com/GoogleCloudPlatform/terraform-google-netapp-volumes/issues/13)) ([34f7304](https://github.com/GoogleCloudPlatform/terraform-google-netapp-volumes/commit/34f7304fe775e92244e4fda7d92e55d6ccd39298)) + ## [0.2.0](https://github.com/GoogleCloudPlatform/terraform-google-netapp-volumes/compare/v0.1.0...v0.2.0) (2024-02-27) diff --git a/README.md b/README.md index df9ca8c..4fa0cdb 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Functional examples are included in the [examples](./examples/) directory. Basic ```hcl module "netapp_pool_volume" { source = "GoogleCloudPlatform/netapp-volumes/google" - version = "~> 0.2" + version = "~> 0.3" project_id = "test-project-id" location = "us-central1" diff --git a/versions.tf b/versions.tf index 5ad8591..1f7901b 100644 --- a/versions.tf +++ b/versions.tf @@ -23,6 +23,6 @@ terraform { } } provider_meta "google" { - module_name = "blueprints/terraform/terraform-google-netapp-volumes/v0.2.0" + module_name = "blueprints/terraform/terraform-google-netapp-volumes/v0.3.0" } }