Skip to content

Commit

Permalink
Merge pull request #15 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 fa4f8ed + 2fab57b commit 0abfeeb
Show file tree
Hide file tree
Showing 4 changed files with 15 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-service-account
cancel-in-progress: false

jobs:
Expand Down
12 changes: 9 additions & 3 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.0.7]

### Added

- Support for provider 4.x

## [0.0.6]

### Fixed
Expand Down Expand Up @@ -44,11 +50,11 @@ 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-service-account/compare/v0.0.6...HEAD
[0.0.6]: https://github.com/mineiros-io/terraform-google-service-account/releases/tag/v0.0.5...v0.0.6
[unreleased]: https://github.com/mineiros-io/terraform-google-service-account/compare/v0.0.7...HEAD
[0.0.7]: https://github.com/mineiros-io/terraform-google-service-account/releases/tag/v0.0.6...v0.0.7

<!-- markdown-link-check-disabled -->

[0.0.6]: https://github.com/mineiros-io/terraform-google-service-account/releases/tag/v0.0.5...v0.0.6
[0.0.5]: https://github.com/mineiros-io/terraform-google-service-account/releases/tag/v0.0.4...v0.0.5
[0.0.4]: https://github.com/mineiros-io/terraform-google-service-account/releases/tag/v0.0.3...v0.0.4
[0.0.3]: https://github.com/mineiros-io/terraform-google-service-account/releases/tag/v0.0.2...v0.0.3
Expand Down
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-service-account-iam.git?ref=v0.0.1"
source = "github.com/mineiros-io/terraform-google-service-account-iam.git?ref=v0.0.2"

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 @@ -6,6 +6,9 @@ terraform {
required_version = ">= 0.14.0, < 2.0"

required_providers {
google = ">= 3.50, < 4.0"
google = {
source = "hashicorp/google"
version = ">= 3.50, < 5.0"
}
}
}

0 comments on commit 0abfeeb

Please sign in to comment.