Skip to content

Commit 9fc86cd

Browse files
authored
MAJOR: DEV-15096 update terraform and google provider version
update minimum version of terraform to 1.0.0 and google provider to 4.6.0
1 parent 10bf418 commit 9fc86cd

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# GCP Tamr VM module
22

3+
## v1.0.0 - June 1st 2022
4+
* Set minimum terraform to 1.0.0 and minimum google provider to 4.6.0
5+
36
## v0.5.0 - October 4th 2021
47
* Sets TAMR_BACKUP_GSUTIL_ENABLED explicitly to true
58

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,14 @@ This modules creates:
5151

5252
| Name | Version |
5353
|------|---------|
54-
| terraform | >= 0.12 |
54+
| terraform | >= 1.0.0 |
55+
| google | >= 4.6.0 |
5556

5657
## Providers
5758

5859
| Name | Version |
5960
|------|---------|
60-
| google | n/a |
61+
| google | >= 4.6.0 |
6162

6263
## Inputs
6364

versions.tf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11

22
terraform {
3-
required_version = ">= 0.12"
3+
required_version = ">= 1.0.0"
4+
required_providers {
5+
google = ">= 4.6.0"
6+
}
47
}

0 commit comments

Comments
 (0)