Skip to content

Commit 6d1f4a3

Browse files
authored
Revert Pin Terraform version - [CORE-1297] (#89)
1 parent 7aa4174 commit 6d1f4a3

File tree

20 files changed

+20
-85
lines changed

20 files changed

+20
-85
lines changed

README.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
11
[![Maintained by Gruntwork.io](https://img.shields.io/badge/maintained%20by-gruntwork.io-%235849a6.svg)](https://gruntwork.io/?ref=repo_package_terraform_utilities)
22
[![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/gruntwork-io/terraform-aws-utilities.svg?label=latest)](https://github.com/gruntwork-io/terraform-aws-utilities/releases/latest)
3-
![Terraform Version](https://img.shields.io/badge/tf-%3E%3D1.1.0%3C%2C%20%3C%3D1.5.7-blue.svg)
3+
![Terraform Version](https://img.shields.io/badge/tf-%3E%3D1.1.0-blue.svg)
44

55
# Terraform Utility Modules
66

77
This repo contains miscellaneous utility and helper modules for use with Terraform.
88

9-
## Information on HashiCorp BSL License Change
10-
11-
Due to the HashiCorp BSL license change, we are restricting Terraform to the latest open source version (`1.5.7`).
12-
Going forward we will be adding support for OpenTofu. To learn more, see the official [OpenTofu website](https://opentofu.org/)
13-
and [project status](https://github.com/opentofu/opentofu/blob/main/WEEKLY_UPDATES.md).
14-
159
## What is in this repo
1610

1711
This repo provides a Gruntwork IaC Package and has the following folder structure:

examples/executable-dependency/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
terraform {
2-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
3-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
4-
# see the official OpenTofu website at https://opentofu.org/.
5-
required_version = ">= 1.0.0, <= 1.5.7"
2+
required_version = ">= 1.0.0"
63
}
74

85
module "executable" {

examples/instance-type/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
terraform {
2-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
3-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
4-
# see the official OpenTofu website at https://opentofu.org/.
5-
required_version = ">= 1.0.0, <= 1.5.7"
2+
required_version = ">= 1.0.0"
63
}
74

85
provider "aws" {

examples/join-path/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
terraform {
2-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
3-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
4-
# see the official OpenTofu website at https://opentofu.org/.
5-
required_version = ">= 1.0.0, <= 1.5.7"
2+
required_version = ">= 1.0.0"
63
}
74

85
module "path" {

examples/list-remove/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
terraform {
2-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
3-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
4-
# see the official OpenTofu website at https://opentofu.org/.
5-
required_version = ">= 1.0.0, <= 1.5.7"
2+
required_version = ">= 1.0.0"
63
}
74

85
module "list_remove" {

examples/operating-system/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
terraform {
2-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
3-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
4-
# see the official OpenTofu website at https://opentofu.org/.
5-
required_version = ">= 1.0.0, <= 1.5.7"
2+
required_version = ">= 1.0.0"
63
}
74

85
module "os" {

examples/pex/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
66

77
terraform {
8-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
9-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
10-
# see the official OpenTofu website at https://opentofu.org/.
11-
required_version = ">= 1.0.0, <= 1.5.7"
8+
required_version = ">= 1.0.0"
129
}
1310

1411
# Run the PEX binary as a local-exec provisioner on a null_resource.

examples/request-quota-increase/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
terraform {
2-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
3-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
4-
# see the official OpenTofu website at https://opentofu.org/.
5-
required_version = ">= 1.0.0, <= 1.5.7"
2+
required_version = ">= 1.0.0"
63
}
74

85
provider "aws" {

examples/require-executable/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
terraform {
2-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
3-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
4-
# see the official OpenTofu website at https://opentofu.org/.
5-
required_version = ">= 1.0.0, <= 1.5.7"
2+
required_version = ">= 1.0.0"
63
}
74

85
module "require_executables" {

modules/executable-dependency/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
terraform {
2-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
3-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
4-
# see the official OpenTofu website at https://opentofu.org/.
5-
required_version = ">= 1.0.0, <= 1.5.7"
2+
required_version = ">= 1.0.0"
63
}
74

85
data "external" "executable" {

modules/instance-type/main.tf

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
terraform {
2-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
3-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
4-
# see the official OpenTofu website at https://opentofu.org/.
5-
required_version = ">= 1.0.0, <= 1.5.7"
6-
2+
required_version = ">= 1.0.0"
73
required_providers {
84
aws = {
95
source = "hashicorp/aws"

modules/join-path/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
terraform {
2-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
3-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
4-
# see the official OpenTofu website at https://opentofu.org/.
5-
required_version = ">= 1.0.0, <= 1.5.7"
2+
required_version = ">= 1.0.0"
63
}
74

85
module "os" {

modules/list-remove/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
terraform {
2-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
3-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
4-
# see the official OpenTofu website at https://opentofu.org/.
5-
required_version = ">= 1.0.0, <= 1.5.7"
2+
required_version = ">= 1.0.0"
63
}
74

85
# Remove the items in items_to_remove from original_list. This works because:

modules/operating-system/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
terraform {
2-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
3-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
4-
# see the official OpenTofu website at https://opentofu.org/.
5-
required_version = ">= 1.0.0, <= 1.5.7"
2+
required_version = ">= 1.0.0"
63
}
74

85
data "external" "os" {

modules/prepare-pex-environment/dependencies.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@
44
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
55

66
terraform {
7-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
8-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
9-
# see the official OpenTofu website at https://opentofu.org/.
10-
required_version = ">= 1.0.0, <= 1.5.7"
7+
required_version = ">= 1.0.0"
118
}
129

1310
# Figure out the OS environment

modules/prepare-pex-environment/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@
77
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
88

99
terraform {
10-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
11-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
12-
# see the official OpenTofu website at https://opentofu.org/.
13-
required_version = ">= 1.0.0, <= 1.5.7"
10+
required_version = ">= 1.0.0"
1411
}
1512

1613
data "external" "determine_python_path" {

modules/request-quota-increase/main.tf

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
terraform {
2-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
3-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
4-
# see the official OpenTofu website at https://opentofu.org/.
5-
required_version = ">= 1.0.0, <= 1.5.7"
6-
2+
required_version = ">= 1.0.0"
73
required_providers {
84
aws = {
95
source = "hashicorp/aws"

modules/require-executable/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
terraform {
2-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
3-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
4-
# see the official OpenTofu website at https://opentofu.org/.
5-
required_version = ">= 1.0.0, <= 1.5.7"
2+
required_version = ">= 1.0.0"
63

74
# Updating the Terraform external provider to 2.3.0 caused an undocumented breaking change (as evidenced by
85
# issues like https://github.com/hashicorp/terraform-provider-external/issues/193). The solution is to pin

modules/run-pex-as-data-source/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
77

88
terraform {
9-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
10-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
11-
# see the official OpenTofu website at https://opentofu.org/.
12-
required_version = ">= 1.0.0, <= 1.5.7"
9+
required_version = ">= 1.0.0"
1310
}
1411

1512
module "pex_env" {

modules/run-pex-as-resource/main.tf

+1-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
66

77
terraform {
8-
# Due to the HashiCorp BSL License change, we are restricting the latest version of Terraform to 1.5.7.
9-
# Going forward we will be adding support for OpenTofu. For additional information on OpenTofu please
10-
# see the official OpenTofu website at https://opentofu.org/.
11-
required_version = ">= 1.0.0, <= 1.5.7"
8+
required_version = ">= 1.0.0"
129
}
1310

1411
module "pex_env" {

0 commit comments

Comments
 (0)