Skip to content

Commit 5de15ce

Browse files
committed
commit in original
1 parent 0d85597 commit 5de15ce

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

backend.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
terraform {
44
backend "azurerm" {
5-
resource_group_name = "tfstate-rg1" # Name of the resource group for the storage account
6-
storage_account_name = "tfstate0bdc58" # A globally unique name for the storage account
7-
container_name = "tfstate" # Name of the blob container
8-
key = "github-demo.tfstate" # Name of the state file
5+
resource_group_name = "tfstate-rg" # Name of the resource group for the storage account
6+
storage_account_name = "storage_account_name" # A globally unique name for the storage account
7+
container_name = "tfstate" # Name of the blob container
8+
key = "github-demo.tfstate" # Name of the state file
99
}
1010
}

setup-terraform-backend.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set -e # Exit immediately if a command exits with a non-zero status.
77

88
# --- Configuration ---
99
# You can change these default values if needed.
10-
RESOURCE_GROUP_NAME="tfstate-rg1"
10+
RESOURCE_GROUP_NAME="tfstate-rg"
1111
LOCATION="eastus"
1212
CONTAINER_NAME="tfstate"
1313
# --- End of Configuration ---

0 commit comments

Comments
 (0)