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:
James Bardin 2017-08-17 12:55:48 -04:00
parent 5d50e764ea
commit 216a68a41b
2 changed files with 7 additions and 7 deletions

View File

@ -1,12 +1,12 @@
---
layout: "backend-types"
page_title: "Backend Type: azure"
sidebar_current: "docs-backends-types-standard-azure"
page_title: "Backend Type: azurerm"
sidebar_current: "docs-backends-types-standard-azurerm"
description: |-
Terraform can store state remotely in Azure Storage.
---
# azure
# azurerm
**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
terraform {
backend "azure" {
backend "azurerm" {
storage_account_name = "abcd1234"
container_name = "tfstate"
key = "prod.terraform.tfstate"
@ -31,7 +31,7 @@ Note that for the access credentials we recommend using a
```hcl
data "terraform_remote_state" "foo" {
backend = "azure"
backend = "azurerm"
config {
storage_account_name = "terraform123abc"
container_name = "terraform-state"

View File

@ -26,8 +26,8 @@
<li<%= sidebar_current("docs-backends-types-standard-artifactory") %>>
<a href="/docs/backends/types/artifactory.html">artifactory</a>
</li>
<li<%= sidebar_current("docs-backends-types-standard-azure") %>>
<a href="/docs/backends/types/azure.html">azure</a>
<li<%= sidebar_current("docs-backends-types-standard-azurerm") %>>
<a href="/docs/backends/types/azurerm.html">azure</a>
</li>
<li<%= sidebar_current("docs-backends-types-standard-consul") %>>
<a href="/docs/backends/types/consul.html">consul</a>