Skip to content

Commit 04fc1f5

Browse files
Add azurerm backend configuration to Terraform
Configured the Terraform backend to use AzureRM with specified resource group, storage account, container, and key for state management.
1 parent e3f4671 commit 04fc1f5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

gh-runners/version.tf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
terraform {
22
required_version = ">= 1.0"
33

4+
backend "azurerm" {
5+
resource_group_name = "dbatools-ci-runners"
6+
storage_account_name = "dbatoolstfstate"
7+
container_name = "tfstate"
8+
key = "vmss.tfstate"
9+
}
10+
411
required_providers {
512
azurerm = {
613
source = "hashicorp/azurerm"

0 commit comments

Comments
 (0)