Files
turnk8s/terraform/cluster/terraform.tf
2024-05-24 15:23:19 +04:00

18 lines
294 B
HCL

terraform {
required_version = ">= 1.7"
backend "remote" {
hostname = "app.terraform.io"
organization = "infraheads"
workspaces {
prefix = "turnk8s-"
}
}
required_providers {
helm = {
source = "hashicorp/helm"
version = ">= 2.13"
}
}
}