File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
1
# GCP Tamr VM module
2
2
3
+ ## v1.0.0 - June 1st 2022
4
+ * Set minimum terraform to 1.0.0 and minimum google provider to 4.6.0
5
+
3
6
## v0.5.0 - October 4th 2021
4
7
* Sets TAMR_BACKUP_GSUTIL_ENABLED explicitly to true
5
8
Original file line number Diff line number Diff line change @@ -51,13 +51,14 @@ This modules creates:
51
51
52
52
| Name | Version |
53
53
| ------| ---------|
54
- | terraform | >= 0.12 |
54
+ | terraform | >= 1.0.0 |
55
+ | google | >= 4.6.0 |
55
56
56
57
## Providers
57
58
58
59
| Name | Version |
59
60
| ------| ---------|
60
- | google | n/a |
61
+ | google | >= 4.6.0 |
61
62
62
63
## Inputs
63
64
Original file line number Diff line number Diff line change 1
1
2
2
terraform {
3
- required_version = " >= 0.12"
3
+ required_version = " >= 1.0.0"
4
+ required_providers {
5
+ google = " >= 4.6.0"
6
+ }
4
7
}
You can’t perform that action at this time.
0 commit comments