Skip to content

Commit

Permalink
Merge pull request #10 from mineiros-io/update-google-provider-4.x
Browse files Browse the repository at this point in the history
Update google provider 4.x
  • Loading branch information
mariux authored Dec 15, 2021
2 parents dcb1fe6 + 3c44256 commit 42301bf
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

concurrency:
group: main
group: terraform-google-secret-manager
cancel-in-progress: false

jobs:
Expand Down
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.1]
## [0.1.1]

### Added

- Support for provider 4.x

## [0.1.0]

### Added

- Initial Implementation

<!-- markdown-link-check-disable -->

[unreleased]: https://github.com/mineiros-io/terraform-google-secret-manager/compare/v0.0.1...HEAD
[0.0.1]: https://github.com/mineiros-io/terraform-google-secret-manager/releases/tag/v0.0.1
[unreleased]: https://github.com/mineiros-io/terraform-google-secret-manager/compare/v0.1.1...HEAD
[0.1.1]: https://github.com/mineiros-io/terraform-google-secret-manager/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/mineiros-io/terraform-google-secret-manager/releases/tag/v0.1.0

<!-- markdown-link-check-disabled -->
2 changes: 1 addition & 1 deletion iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ locals {
}

module "iam" {
source = "github.com/mineiros-io/terraform-google-secret-manager-iam?ref=v0.0.2"
source = "github.com/mineiros-io/terraform-google-secret-manager-iam?ref=v0.0.3"

for_each = var.policy_bindings != null ? local.policy_bindings : local.iam_map

Expand Down
5 changes: 4 additions & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ terraform {
required_version = ">= 0.14.7, < 2.0"

required_providers {
google = "~> 3.75"
google = {
source = "hashicorp/google"
version = ">= 3.75, < 5.0"
}
}
}

0 comments on commit 42301bf

Please sign in to comment.