Skip to content

Commit cb9ef00

Browse files
authored
+remote-storage.tf
1 parent 207a7d7 commit cb9ef00

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Terraform/src/remote-storage.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
terraform {
2+
backend "azurerm" {
3+
resource_group_name = "RGWorkshopUserName" # The name of the resource group for remote state storage
4+
storage_account_name = "examplestorageacctworkshop" # The name of the storage account for remote state storage
5+
container_name = "tfstate" # The name of the container for remote state storage
6+
key = "terraform.tfstate" # The key for the remote state file
7+
}
8+
}

0 commit comments

Comments
 (0)