Skip to content

Commit

Permalink
Merge pull request #15 from mineiros-io/fix/no-value-was-found-for-pr…
Browse files Browse the repository at this point in the history
…oject-during-import

fix: Error: No value was found for project during import
  • Loading branch information
czerasz-mineiros authored Feb 16, 2022
2 parents b6bf459 + 2814640 commit 1551cbc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -34,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- markdown-link-check-disable -->

[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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions README.tfdoc.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 1551cbc

Please sign in to comment.