Skip to content

Commit a941ade

Browse files
committed
test
1 parent 13bd8d6 commit a941ade

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

articles/terraform/terraform-backend.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: terraform
55
author: tomarchermsft
66
ms.service: azure
77
ms.topic: article
8-
ms.date: 09/13/2018
8+
ms.date: 09/20/2019
99
ms.author: tarcher
1010
---
1111

@@ -76,7 +76,16 @@ To configure Terraform to use the backend, include a *backend* configuration wit
7676

7777
The following example configures a Terraform backend and creates an Azure resource group. Replace the values with values from your environment.
7878

79-
```json
79+
```terraform
80+
terraform {
81+
backend "azurerm" {
82+
storage_account_name = "tstate09762"
83+
container_name = "tstate"
84+
key = "terraform.tfstate"
85+
}
86+
}
87+
88+
```hcl
8089
terraform {
8190
backend "azurerm" {
8291
storage_account_name = "tstate09762"

0 commit comments

Comments
 (0)