Skip to content

Commit 5a8581e

Browse files
committed
Configure Terraform backend to use Azure Storage for remote state
1 parent 84fa123 commit 5a8581e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

providers.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ terraform {
55
version = "4.51.0"
66
}
77
}
8+
9+
backend "azurerm" {
10+
resource_group_name = "tfstate"
11+
storage_account_name = "tfstate56202"
12+
container_name = "tfstate"
13+
key = "terraform.tfstate"
14+
use_oidc = true
15+
}
816
}
917

1018
provider "azurerm" {

0 commit comments

Comments
 (0)