Skip to content

Commit 6fb2b42

Browse files
fix: relax version constraints to enable terraform 0.13.x compatibility (#108)
1 parent e942ccd commit 6fb2b42

File tree

34 files changed

+40
-38
lines changed

34 files changed

+40
-38
lines changed

.kitchen.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
---
1616
driver:
1717
name: terraform
18+
verify_version: false
1819

1920
provisioner:
2021
name: terraform

autogen/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
terraform {
18-
required_version = "~> 0.12.6"
18+
required_version = ">=0.12.6, <0.14"
1919
required_providers {
2020
google = ">= 2.7, <4.0"
2121
google-beta = ">= 2.7, <4.0"

build/int.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,4 +246,4 @@ tags:
246246
- 'integration'
247247
substitutions:
248248
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
249-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '0'
249+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '0.12.0'

build/lint.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ tags:
2121
- 'lint'
2222
substitutions:
2323
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
24-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '0'
24+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '0.12.0'

examples/compute_instance/simple/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
*/
1616

1717
terraform {
18-
required_version = "~> 0.12.6"
18+
required_version = ">=0.12.6, <0.14"
1919
}

examples/instance_template/additional_disks/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
*/
1616

1717
terraform {
18-
required_version = "~> 0.12.6"
18+
required_version = ">=0.12.6, <0.14"
1919
}

examples/instance_template/simple/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
*/
1616

1717
terraform {
18-
required_version = "~> 0.12.6"
18+
required_version = ">=0.12.6, <0.14"
1919
}

examples/mig/autoscaler/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
*/
1616

1717
terraform {
18-
required_version = "~> 0.12.6"
18+
required_version = ">=0.12.6, <0.14"
1919
}

examples/mig/full/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
*/
1616

1717
terraform {
18-
required_version = "~> 0.12.6"
18+
required_version = ">=0.12.6, <0.14"
1919
}

examples/mig/simple/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
*/
1616

1717
terraform {
18-
required_version = "~> 0.12.6"
18+
required_version = ">=0.12.6, <0.14"
1919
}

0 commit comments

Comments
 (0)