Skip to content

Commit e035e7f

Browse files
committed
Added terraform backend remote
1 parent d5c5232 commit e035e7f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

terraform/provider.tf

+9-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,17 @@ terraform {
55
version = "~> 3.0"
66
}
77
}
8+
9+
backend "azurerm" {
10+
resource_group_name = "terraform"
11+
storage_account_name = "pranavtfremotestate"
12+
container_name = "tfstate"
13+
key = "xirr.terraform.tfstate"
14+
use_oidc = true
15+
}
816
}
917

1018
provider "azurerm" {
1119
skip_provider_registration = true
1220
features {}
13-
}
21+
}

0 commit comments

Comments
 (0)