forked from piyushsachdeva/Terraform-Full-Course-Azure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackend.tf
More file actions
8 lines (8 loc) · 657 Bytes
/
Copy pathbackend.tf
File metadata and controls
8 lines (8 loc) · 657 Bytes
1
2
3
4
5
6
7
8
terraform {
backend "azurerm" {
resource_group_name = "tfstate-day04" # Can be passed via `-backend-config=`"resource_group_name=<resource group name>"` in the `init` command.
storage_account_name = "day0417691" # Can be passed via `-backend-config=`"storage_account_name=<storage account name>"` in the `init` command.
container_name = "tfstate" # Can be passed via `-backend-config=`"container_name=<container name>"` in the `init` command.
key = "dev.terraform.tfstate" # Can be passed via `-backend-config=`"key=<blob key name>"` in the `init` command.
}
}