Files
noahspan-root/infrastructure/terraform.tf
2024-05-19 15:25:41 -05:00

18 lines
275 B
HCL

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