diff --git a/website/docs/language/settings/backends/azurerm.html.md b/website/docs/language/settings/backends/azurerm.html.md index d5796a3484..36e95a2f81 100644 --- a/website/docs/language/settings/backends/azurerm.html.md +++ b/website/docs/language/settings/backends/azurerm.html.md @@ -35,6 +35,7 @@ When authenticating using Managed Service Identity (MSI): ```hcl terraform { backend "azurerm" { + resource_group_name = "StorageAccount-ResourceGroup" storage_account_name = "abcd1234" container_name = "tfstate" key = "prod.terraform.tfstate" @@ -125,6 +126,7 @@ When authenticating using Managed Service Identity (MSI): data "terraform_remote_state" "foo" { backend = "azurerm" config = { + resource_group_name = "StorageAccount-ResourceGroup" storage_account_name = "terraform123abc" container_name = "terraform-state" key = "prod.terraform.tfstate" @@ -215,6 +217,8 @@ The following configuration options are supported: When authenticating using the Managed Service Identity (MSI) - the following fields are also supported: +* `resource_group_name` - (Required) The Name of the Resource Group in which the Storage Account exists. + * `subscription_id` - (Optional) The Subscription ID in which the Storage Account exists. This can also be sourced from the `ARM_SUBSCRIPTION_ID` environment variable. * `tenant_id` - (Optional) The Tenant ID in which the Subscription exists. This can also be sourced from the `ARM_TENANT_ID` environment variable.