Files
noahspan-flying/infrastructure/terraform.tf
2025-10-02 12:00:24 -05:00

19 lines
300 B
HCL

terraform {
required_version = ">= 1.1.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "4.40.0"
}
}
backend "remote" {
hostname = "app.terraform.io"
organization = "noahspan"
workspaces {
prefix = "noahspan-"
}
}
}