Skip to content
This repository was archived by the owner on Jan 25, 2023. It is now read-only.

Commit 350b705

Browse files
authored
Merge pull request #248 from bwhaley/tf-1.0x
Bump tf to version 1.0
2 parents effca07 + fe99951 commit 350b705

File tree

16 files changed

+46
-32
lines changed

16 files changed

+46
-32
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
defaults: &defaults
22
docker:
3-
- image: 087285199408.dkr.ecr.us-east-1.amazonaws.com/circle-ci-test-image-base:go1.16-tf15.1-tg29.0
3+
- image: 087285199408.dkr.ecr.us-east-1.amazonaws.com/circle-ci-test-image-base:go1.16-tf1.0-tg31.1-pck1.7
44
version: 2
55
jobs:
66
test:

examples/vault-agent/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# REQUIRE A SPECIFIC TERRAFORM VERSION OR HIGHER
33
# ----------------------------------------------------------------------------------------------------------------------
44
terraform {
5-
# This module is now only being tested with Terraform 0.15.x. However, to make upgrading easier, we are setting
5+
# This module is now only being tested with Terraform 1.0.x. However, to make upgrading easier, we are setting
66
# 0.12.26 as the minimum version, as that version added support for required_providers with source URLs, making it
7-
# forwards compatible with 0.15.x code.
7+
# forwards compatible with 1.0.x code.
88
required_version = ">= 0.12.26"
99
}
1010

examples/vault-auto-unseal/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# REQUIRE A SPECIFIC TERRAFORM VERSION OR HIGHER
33
# ----------------------------------------------------------------------------------------------------------------------
44
terraform {
5-
# This module is now only being tested with Terraform 0.15.x. However, to make upgrading easier, we are setting
5+
# This module is now only being tested with Terraform 1.0.x. However, to make upgrading easier, we are setting
66
# 0.12.26 as the minimum version, as that version added support for required_providers with source URLs, making it
7-
# forwards compatible with 0.15.x code.
7+
# forwards compatible with 1.0.x code.
88
required_version = ">= 0.12.26"
99
}
1010

examples/vault-cluster-private/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# REQUIRE A SPECIFIC TERRAFORM VERSION OR HIGHER
33
# ----------------------------------------------------------------------------------------------------------------------
44
terraform {
5-
# This module is now only being tested with Terraform 0.15.x. However, to make upgrading easier, we are setting
5+
# This module is now only being tested with Terraform 1.0.x. However, to make upgrading easier, we are setting
66
# 0.12.26 as the minimum version, as that version added support for required_providers with source URLs, making it
7-
# forwards compatible with 0.15.x code.
7+
# forwards compatible with 1.0.x code.
88
required_version = ">= 0.12.26"
99
}
1010

examples/vault-dynamodb-backend/dynamodb/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
2-
# This module is now only being tested with Terraform 0.15.x. However, to make upgrading easier, we are setting
2+
# This module is now only being tested with Terraform 1.0.x. However, to make upgrading easier, we are setting
33
# 0.12.26 as the minimum version, as that version added support for required_providers with source URLs, making it
4-
# forwards compatible with 0.15.x code.
4+
# forwards compatible with 1.0.x code.
55
required_version = ">= 0.12.26"
66
}
77

examples/vault-dynamodb-backend/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# REQUIRE A SPECIFIC TERRAFORM VERSION OR HIGHER
33
# ----------------------------------------------------------------------------------------------------------------------
44
terraform {
5-
# This module is now only being tested with Terraform 0.15.x. However, to make upgrading easier, we are setting
5+
# This module is now only being tested with Terraform 1.0.x. However, to make upgrading easier, we are setting
66
# 0.12.26 as the minimum version, as that version added support for required_providers with source URLs, making it
7-
# forwards compatible with 0.15.x code.
7+
# forwards compatible with 1.0.x code.
88
required_version = ">= 0.12.26"
99
}
1010

examples/vault-ec2-auth/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# REQUIRE A SPECIFIC TERRAFORM VERSION OR HIGHER
33
# ----------------------------------------------------------------------------------------------------------------------
44
terraform {
5-
# This module is now only being tested with Terraform 0.15.x. However, to make upgrading easier, we are setting
5+
# This module is now only being tested with Terraform 1.0.x. However, to make upgrading easier, we are setting
66
# 0.12.26 as the minimum version, as that version added support for required_providers with source URLs, making it
7-
# forwards compatible with 0.15.x code.
7+
# forwards compatible with 1.0.x code.
88
required_version = ">= 0.12.26"
99
}
1010

examples/vault-iam-auth/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# REQUIRE A SPECIFIC TERRAFORM VERSION OR HIGHER
33
# ----------------------------------------------------------------------------------------------------------------------
44
terraform {
5-
# This module is now only being tested with Terraform 0.15.x. However, to make upgrading easier, we are setting
5+
# This module is now only being tested with Terraform 1.0.x. However, to make upgrading easier, we are setting
66
# 0.12.26 as the minimum version, as that version added support for required_providers with source URLs, making it
7-
# forwards compatible with 0.15.x code.
7+
# forwards compatible with 1.0.x code.
88
required_version = ">= 0.12.26"
99
}
1010

examples/vault-s3-backend/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# REQUIRE A SPECIFIC TERRAFORM VERSION OR HIGHER
33
# ----------------------------------------------------------------------------------------------------------------------
44
terraform {
5-
# This module is now only being tested with Terraform 0.15.x. However, to make upgrading easier, we are setting
5+
# This module is now only being tested with Terraform 1.0.x. However, to make upgrading easier, we are setting
66
# 0.12.26 as the minimum version, as that version added support for required_providers with source URLs, making it
7-
# forwards compatible with 0.15.x code.
7+
# forwards compatible with 1.0.x code.
88
required_version = ">= 0.12.26"
99
}
1010

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
# REQUIRE A SPECIFIC TERRAFORM VERSION OR HIGHER
1010
# ----------------------------------------------------------------------------------------------------------------------
1111
terraform {
12-
# This module is now only being tested with Terraform 0.15.x. However, to make upgrading easier, we are setting
12+
# This module is now only being tested with Terraform 1.0.x. However, to make upgrading easier, we are setting
1313
# 0.12.26 as the minimum version, as that version added support for required_providers with source URLs, making it
14-
# forwards compatible with 0.15.x code.
14+
# forwards compatible with 1.0.x code.
1515
required_version = ">= 0.12.26"
1616
}
1717

0 commit comments

Comments
 (0)