This commit is contained in:
Sam
2025-09-26 09:36:07 +00:00
parent bdb8e87790
commit 8496c9de14
7 changed files with 97 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
terraform {
backend "azurerm" {
resource_group_name = "terraform"
storage_account_name = "tfstoracccom"
container_name = "tfstate"
key = "dev.terraform.tfstate"
}
}
+12
View File
@@ -0,0 +1,12 @@
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "4.46.0"
}
}
}
provider "azurerm" {
# Configuration options
}