Skip to content

Commit

Permalink
Merge pull request #12 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 committed Dec 13, 2021
2 parents f74ce91 + 877eb6a commit 5439fc4
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 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-storage-bucket
cancel-in-progress: false

jobs:
Expand Down
11 changes: 9 additions & 2 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.4]

### Added

- Support for provider 4.x

## [0.0.3]

### Added
Expand All @@ -27,9 +33,10 @@ 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-storage-bucket/compare/v0.0.3...HEAD
[0.0.3]: https://github.com/mineiros-io/terraform-google-storage-bucket/compare/v0.0.2...v0.0.3
[unreleased]: https://github.com/mineiros-io/terraform-google-storage-bucket/compare/v0.0.4...HEAD
[0.0.4]: https://github.com/mineiros-io/terraform-google-storage-bucket/compare/v0.0.3...v0.0.4

<!-- markdown-link-check-disabled -->
[0.0.3]: https://github.com/mineiros-io/terraform-google-storage-bucket/compare/v0.0.2...v0.0.3
[0.0.2]: https://github.com/mineiros-io/terraform-google-storage-bucket/compare/v0.0.1...v0.0.2
[0.0.1]: https://github.com/mineiros-io/terraform-google-storage-bucket/releases/tag/v0.0.1
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-storage-bucket-iam.git?ref=v0.0.1"
source = "github.com/mineiros-io/terraform-google-storage-bucket-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 @@ -2,6 +2,9 @@ terraform {
required_version = ">= 0.14, < 2.0"

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

0 comments on commit 5439fc4

Please sign in to comment.