Skip to content

Commit

Permalink
Pinning Terraform 1.9.8 due to bug
Browse files Browse the repository at this point in the history
  • Loading branch information
twerthi committed Dec 3, 2024
1 parent 339dff5 commit 5383d96
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ terraform {
}

backend "s3" { }
required_version = "~> 1.9.8"
}

Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ terraform {
}

backend "s3" { }
required_version = "~> 1.9.8"
}

provider "azurerm" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ terraform {
}

backend "s3" { }
required_version = "~> 1.9.8"
}

provider "google" {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
terraform {

required_version = ">=0.12"
#required_version = ">=0.12"
required_version = "~> 1.9.8"

required_providers {
aws = {
Expand All @@ -13,7 +14,8 @@ terraform {
bucket = "#{Project.AWS.Backend.Bucket}"
key = "#{Project.AWS.Backend.Key}"
region = "#{Project.AWS.Backend.Region}"
}
}

}

# Configure the AWS Provider
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
terraform {

required_version = ">=0.12"
#required_version = ">=0.12"
required_version = "~> 1.9.8"

required_providers {
azurerm = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ terraform {
key = "#{Project.AWS.Backend.Key}"
region = "#{Project.AWS.Backend.Region}"
}

required_version = "~> 1.9.8"
}

provider "google" {
Expand Down

0 comments on commit 5383d96

Please sign in to comment.