Skip to content

Commit cfc8fa0

Browse files
authored
Merge pull request #9 from mineiros-io/update-google-provider-4.x
Update google provider 4.x
2 parents 5aba10e + 0c1e8f0 commit cfc8fa0

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request:
88

99
concurrency:
10-
group: main
10+
group: terraform-google-storage-bucket-iam
1111
cancel-in-progress: false
1212

1313
jobs:

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.2]
11+
12+
### Added
13+
14+
- Support for provider 4.x
15+
1016
## [0.0.1]
1117

1218
### Added
@@ -15,7 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1521

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

18-
[unreleased]: https://github.com/mineiros-io/terraform-google-storage-bucket-iam/compare/v0.0.1...HEAD
24+
[unreleased]: https://github.com/mineiros-io/terraform-google-storage-bucket-iam/compare/v0.0.2...HEAD
25+
[0.0.2]: https://github.com/mineiros-io/terraform-google-storage-bucket-iam/compare/v0.0.1...v0.0.2
1926
[0.0.1]: https://github.com/mineiros-io/terraform-google-storage-bucket-iam/releases/tag/v0.0.1
2027

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

versions.tf

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ terraform {
22
required_version = ">= 0.14, < 2.0"
33

44
required_providers {
5-
google = "~> 3.59"
5+
google = {
6+
source = "hashicorp/google"
7+
version = ">= 3.59, < 5.0"
8+
}
69
}
710
}

0 commit comments

Comments
 (0)