Skip to content

Commit

Permalink
Merge pull request #6 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 ee6f550 + c9f1f95 commit 96c7d21
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-cloud-run
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-cloud-run/compare/v0.0.1...HEAD
[unreleased]: https://github.com/mineiros-io/terraform-google-cloud-run/compare/v0.0.2...HEAD
[0.0.2]: https://github.com/mineiros-io/terraform-google-cloud-run/compare/v0.0.1...v0.0.2
[0.0.1]: https://github.com/mineiros-io/terraform-google-cloud-run/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-cloud-run-iam?ref=v0.0.1"
source = "github.com/mineiros-io/terraform-google-cloud-run-iam?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.75"
google = {
source = "hashicorp/google"
version = ">= 3.75, < 5.0"
}
}
}

0 comments on commit 96c7d21

Please sign in to comment.