Skip to content

Commit 1a77919

Browse files
authored
fix: Relax Terraform version to allow 0.13 (#197)
1 parent 4957536 commit 1a77919

File tree

22 files changed

+22
-21
lines changed

22 files changed

+22
-21
lines changed

.kitchen.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
driver:
1717
name: "terraform"
1818
command_timeout: 1800
19+
verify_version: false
1920

2021
provisioner:
2122
name: "terraform"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Make will use bash instead of sh
1616
SHELL := /usr/bin/env bash
1717

18-
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 0.6.0
18+
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 0
1919
DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools
2020
REGISTRY_URL := gcr.io/cloud-foundation-cicd
2121

build/int.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,4 +166,4 @@ tags:
166166
- 'integration'
167167
substitutions:
168168
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
169-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '0.6.0'
169+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '0'

examples/delete_default_gateway_routes/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/ilb_routing/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/multi_vpc/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/secondary_ranges/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/simple_project/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/simple_project_with_regional_network/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/submodule_firewall/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)