cloud-infrastructure/terraform/environments/production/aws/data/versions.tf
terraform {
backend "s3" {
region = "us-west-2"
bucket = "hm-terraform-bucket"
key = "production/aws/data/terraform.tfstate"
}
required_providers {
# https://registry.terraform.io/providers/hashicorp/aws/latest
aws = {
source = "hashicorp/aws"
version = "5.72.0"
}
# https://registry.terraform.io/providers/hashicorp/external/latest
external = {
source = "hashicorp/external"
version = "2.3.4"
}
# https://registry.terraform.io/providers/hashicorp/helm/latest
helm = {
source = "hashicorp/helm"
version = "2.15.0"
}
# https://registry.terraform.io/providers/hashicorp/kubernetes/latest
kubernetes = {
source = "hashicorp/kubernetes"
version = "2.32.0"
}
}
required_version = ">= 1.8"
}