diff --git a/CHANGELOG.md b/CHANGELOG.md index f1da5e5..750f5c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.4] + +### Fixed + +- `Error: No value was found for project during import` + ## [0.1.3] ### Added @@ -34,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [unreleased]: https://github.com/mineiros-io/terraform-google-secret-manager/compare/v0.1.3...HEAD +[0.1.4]: https://github.com/mineiros-io/terraform-google-secret-manager/compare/v0.1.3...v0.1.4 [0.1.3]: https://github.com/mineiros-io/terraform-google-secret-manager/compare/v0.1.2...v0.1.3 [0.1.2]: https://github.com/mineiros-io/terraform-google-secret-manager/compare/v0.1.1...v0.1.2 [0.1.1]: https://github.com/mineiros-io/terraform-google-secret-manager/compare/v0.1.0...v0.1.1 diff --git a/README.md b/README.md index 90312b1..64bd329 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ Most basic usage just setting required arguments: ```hcl module "terraform-google-secret-manager" { - source = "github.com/mineiros-io/terraform-google-secret-manager.git?ref=v0.1.3" + source = "github.com/mineiros-io/terraform-google-secret-manager.git?ref=v0.1.4" secret_id = "secret" } @@ -352,7 +352,7 @@ Run `make help` to see details on each available target. ## License [![license][badge-license]][apache20] - + This module is licensed under the Apache License Version 2.0, January 2004. Please see [LICENSE] for full details. diff --git a/README.tfdoc.hcl b/README.tfdoc.hcl index d62829d..24784d4 100644 --- a/README.tfdoc.hcl +++ b/README.tfdoc.hcl @@ -67,7 +67,7 @@ section { ```hcl module "terraform-google-secret-manager" { - source = "github.com/mineiros-io/terraform-google-secret-manager.git?ref=v0.1.3" + source = "github.com/mineiros-io/terraform-google-secret-manager.git?ref=v0.1.4" secret_id = "secret" } @@ -458,7 +458,7 @@ section { title = "License" content = <<-END [![license][badge-license]][apache20] - + This module is licensed under the Apache License Version 2.0, January 2004. Please see [LICENSE] for full details. diff --git a/iam.tf b/iam.tf index d817b38..7bed5b9 100644 --- a/iam.tf +++ b/iam.tf @@ -21,4 +21,5 @@ module "iam" { members = try(each.value.members, null) authoritative = try(each.value.authoritative, true) policy_bindings = try(each.value.policy_bindings, null) + project = var.project }