Files
noahspan-flying/infrastructure/terraform.tf
noahspannbauer b8ec5be269
All checks were successful
Pull Request / changes (pull_request) Successful in 19s
Pull Request / build-and-test (pull_request) Has been skipped
Pull Request / terraform-plan (pull_request) Has been skipped
switching terraform backend to azure storage
2026-07-13 11:47:30 -05:00

24 lines
410 B
HCL

terraform {
required_version = ">= 1.1.0"
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "4.40.0"
}
azuread = {
source = "hashicorp/azuread"
}
random = {
source = "hashicorp/random"
}
}
backend "azurerm" {
resource_group_name = "noahspan"
storage_account_name = "noahspanterraform"
key = "terraform.tfstate"
}
}