Skip to content

Commit

Permalink
Merge pull request #7 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 5abdd4b + ccc0bc3 commit 866d953
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 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-artifact-registry-repository
cancel-in-progress: false

jobs:
Expand Down
9 changes: 8 additions & 1 deletion 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.2]

### Added

- Support for provider 4.x

## [0.0.1]

### Added
Expand All @@ -15,7 +21,8 @@ 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-artifact-registry-repository/compare/v0.0.1...HEAD
[unreleased]: https://github.com/mineiros-io/terraform-google-artifact-registry-repository/compare/v0.0.2...HEAD
[0.0.2]: https://github.com/mineiros-io/terraform-google-artifact-registry-repository/compare/v0.0.1...v0.0.2
[0.0.1]: https://github.com/mineiros-io/terraform-google-artifact-registry-repository/releases/tag/v0.0.1

<!-- 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-artifact-registry-repository-iam.git?ref=v0.0.1"
source = "github.com/mineiros-io/terraform-google-artifact-registry-repository-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-beta = "~> 3.75"
google-beta = {
source = "hashicorp/google-beta"
version = ">= 4.0, < 5.0"
}
}
}

0 comments on commit 866d953

Please sign in to comment.