We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cebc8f1 commit edbee9bCopy full SHA for edbee9b
create-azure-infra/provider.tf
@@ -6,7 +6,7 @@ terraform {
6
}
7
8
backend "azurerm" {
9
- resource_group_name = azurerm_resource_group.gha_runner_rg.name
+ resource_group_name = "terraform-backend-rg"
10
storage_account_name = azurerm_storage_account.gha_runner_sa.name
11
container_name = azurerm_storage_container.tfstate_container.name
12
key = "${var.project}-${var.env}-terraform.tfstate"
@@ -23,7 +23,7 @@ provider "azurerm" {
23
24
25
resource "azurerm_storage_container" "tfstate_container" {
26
- name = ""${var.project}-${var.env}-tfstate-container"
+ name = "${var.project}-${var.env}-tfstate-container"
27
storage_account_id = azurerm_storage_account.gha_runner_sa.id
28
container_access_type = "private"
29
0 commit comments