update backend docs to reflect new azurerm name
The backend has been renamed. Using the old name in the config will trigger a deprecation warning, but the implementation and the documentation is the same.
This commit is contained in:
parent
5d50e764ea
commit
216a68a41b
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
layout: "backend-types"
|
layout: "backend-types"
|
||||||
page_title: "Backend Type: azure"
|
page_title: "Backend Type: azurerm"
|
||||||
sidebar_current: "docs-backends-types-standard-azure"
|
sidebar_current: "docs-backends-types-standard-azurerm"
|
||||||
description: |-
|
description: |-
|
||||||
Terraform can store state remotely in Azure Storage.
|
Terraform can store state remotely in Azure Storage.
|
||||||
---
|
---
|
||||||
|
|
||||||
# azure
|
# azurerm
|
||||||
|
|
||||||
**Kind: Standard (with state locking)**
|
**Kind: Standard (with state locking)**
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ Stores the state as a given key in a given bucket on [Microsoft Azure Storage](h
|
||||||
|
|
||||||
```hcl
|
```hcl
|
||||||
terraform {
|
terraform {
|
||||||
backend "azure" {
|
backend "azurerm" {
|
||||||
storage_account_name = "abcd1234"
|
storage_account_name = "abcd1234"
|
||||||
container_name = "tfstate"
|
container_name = "tfstate"
|
||||||
key = "prod.terraform.tfstate"
|
key = "prod.terraform.tfstate"
|
||||||
|
@ -31,7 +31,7 @@ Note that for the access credentials we recommend using a
|
||||||
|
|
||||||
```hcl
|
```hcl
|
||||||
data "terraform_remote_state" "foo" {
|
data "terraform_remote_state" "foo" {
|
||||||
backend = "azure"
|
backend = "azurerm"
|
||||||
config {
|
config {
|
||||||
storage_account_name = "terraform123abc"
|
storage_account_name = "terraform123abc"
|
||||||
container_name = "terraform-state"
|
container_name = "terraform-state"
|
|
@ -26,8 +26,8 @@
|
||||||
<li<%= sidebar_current("docs-backends-types-standard-artifactory") %>>
|
<li<%= sidebar_current("docs-backends-types-standard-artifactory") %>>
|
||||||
<a href="/docs/backends/types/artifactory.html">artifactory</a>
|
<a href="/docs/backends/types/artifactory.html">artifactory</a>
|
||||||
</li>
|
</li>
|
||||||
<li<%= sidebar_current("docs-backends-types-standard-azure") %>>
|
<li<%= sidebar_current("docs-backends-types-standard-azurerm") %>>
|
||||||
<a href="/docs/backends/types/azure.html">azure</a>
|
<a href="/docs/backends/types/azurerm.html">azure</a>
|
||||||
</li>
|
</li>
|
||||||
<li<%= sidebar_current("docs-backends-types-standard-consul") %>>
|
<li<%= sidebar_current("docs-backends-types-standard-consul") %>>
|
||||||
<a href="/docs/backends/types/consul.html">consul</a>
|
<a href="/docs/backends/types/consul.html">consul</a>
|
||||||
|
|
Loading…
Reference in New Issue