Skip to content

Commit 5383d96

Browse files
committed
Pinning Terraform 1.9.8 due to bug
1 parent 339dff5 commit 5383d96

File tree

6 files changed

+11
-3
lines changed

6 files changed

+11
-3
lines changed

octopus-samples-instances/aws-base-infrastructure-terraform/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ terraform {
99
}
1010

1111
backend "s3" { }
12+
required_version = "~> 1.9.8"
1213
}
1314

octopus-samples-instances/azure-base-infrastructure-terraform/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ terraform {
88
}
99

1010
backend "s3" { }
11+
required_version = "~> 1.9.8"
1112
}
1213

1314
provider "azurerm" {

octopus-samples-instances/gcp-base-infrastructure-terraform/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ terraform {
77
}
88

99
backend "s3" { }
10+
required_version = "~> 1.9.8"
1011
}
1112

1213
provider "google" {

octopus-samples-instances/shared-workers-terraform/aws/main.tf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
terraform {
22

3-
required_version = ">=0.12"
3+
#required_version = ">=0.12"
4+
required_version = "~> 1.9.8"
45

56
required_providers {
67
aws = {
@@ -13,7 +14,8 @@ terraform {
1314
bucket = "#{Project.AWS.Backend.Bucket}"
1415
key = "#{Project.AWS.Backend.Key}"
1516
region = "#{Project.AWS.Backend.Region}"
16-
}
17+
}
18+
1719
}
1820

1921
# Configure the AWS Provider

octopus-samples-instances/shared-workers-terraform/azure/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
terraform {
22

3-
required_version = ">=0.12"
3+
#required_version = ">=0.12"
4+
required_version = "~> 1.9.8"
45

56
required_providers {
67
azurerm = {

octopus-samples-instances/shared-workers-terraform/gcp/main.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ terraform {
1111
key = "#{Project.AWS.Backend.Key}"
1212
region = "#{Project.AWS.Backend.Region}"
1313
}
14+
15+
required_version = "~> 1.9.8"
1416
}
1517

1618
provider "google" {

0 commit comments

Comments
 (0)