From c1ac72683dedffecca809170bdd1f7dbd382b7aa Mon Sep 17 00:00:00 2001 From: aznashwan Date: Fri, 26 Jun 2015 15:48:01 +0300 Subject: [PATCH] Fixed indentation in Azure documentation. --- .../azure/r/hosted_service.html.markdown | 6 +++--- .../azure/r/security_group_rule.html.markdown | 18 +++++++++--------- .../azure/r/sql_database_service.html.markdown | 1 - .../azure/r/storage_blob.html.markdown | 8 ++++---- .../azure/r/storage_container.html.markdown | 6 +++--- .../azure/r/storage_queue.html.markdown | 4 ++-- .../azure/r/storage_service.html.markdown | 6 +++--- 7 files changed, 24 insertions(+), 25 deletions(-) diff --git a/website/source/docs/providers/azure/r/hosted_service.html.markdown b/website/source/docs/providers/azure/r/hosted_service.html.markdown index 9c76307ec6..56a9463150 100644 --- a/website/source/docs/providers/azure/r/hosted_service.html.markdown +++ b/website/source/docs/providers/azure/r/hosted_service.html.markdown @@ -14,10 +14,10 @@ Creates a new hosted service on Azure with its own .cloudapp.net domain. ``` resource "azure_hosted_service" "terraform-service" { - name = "terraform-service" - location = "North Europe" + name = "terraform-service" + location = "North Europe" ephemeral_contents = false - description = "Hosted service created by Terraform." + description = "Hosted service created by Terraform." label = "tf-hs-01" } ``` diff --git a/website/source/docs/providers/azure/r/security_group_rule.html.markdown b/website/source/docs/providers/azure/r/security_group_rule.html.markdown index 02df5408c3..20a28ce9d7 100644 --- a/website/source/docs/providers/azure/r/security_group_rule.html.markdown +++ b/website/source/docs/providers/azure/r/security_group_rule.html.markdown @@ -23,15 +23,15 @@ resource "azure_security_group" "apps" { resource "azure_security_group_rule" "ssh_access" { name = "ssh-access-rule" - security_group_names = ["${azure_security_group.web.name}", "${azure_security_group.apps.name}"] - type = "Inbound" - action = "Allow" - priority = 200 - source_address_prefix = "100.0.0.0/32" - source_port_range = "*" - destination_address_prefix = "10.0.0.0/32" - destination_port_range = "22" - protocol = "TCP" + security_group_names = ["${azure_security_group.web.name}", "${azure_security_group.apps.name}"] + type = "Inbound" + action = "Allow" + priority = 200 + source_address_prefix = "100.0.0.0/32" + source_port_range = "*" + destination_address_prefix = "10.0.0.0/32" + destination_port_range = "22" + protocol = "TCP" } ``` diff --git a/website/source/docs/providers/azure/r/sql_database_service.html.markdown b/website/source/docs/providers/azure/r/sql_database_service.html.markdown index aeabda52b0..f068d3ff1a 100644 --- a/website/source/docs/providers/azure/r/sql_database_service.html.markdown +++ b/website/source/docs/providers/azure/r/sql_database_service.html.markdown @@ -21,7 +21,6 @@ resource "azure_sql_database_service" "sql-server" { max_size_bytes = "5368709120" service_level_id = "f1173c43-91bd-4aaa-973c-54e79e15235b" } - ``` ## Argument Reference diff --git a/website/source/docs/providers/azure/r/storage_blob.html.markdown b/website/source/docs/providers/azure/r/storage_blob.html.markdown index 0453f68a20..0e02d099a9 100644 --- a/website/source/docs/providers/azure/r/storage_blob.html.markdown +++ b/website/source/docs/providers/azure/r/storage_blob.html.markdown @@ -14,10 +14,10 @@ Creates a new storage blob within a given storage container on Azure. ``` resource "azure_storage_blob" "foo" { - name = "tftesting-blob" - storage_service_name = "tfstorserv" - storage_container_name = "terraform-storage-container" - type = "PageBlob" + name = "tftesting-blob" + storage_service_name = "tfstorserv" + storage_container_name = "terraform-storage-container" + type = "PageBlob" size = 1024 } ```` diff --git a/website/source/docs/providers/azure/r/storage_container.html.markdown b/website/source/docs/providers/azure/r/storage_container.html.markdown index 45bf7d8730..d0484c3767 100644 --- a/website/source/docs/providers/azure/r/storage_container.html.markdown +++ b/website/source/docs/providers/azure/r/storage_container.html.markdown @@ -14,9 +14,9 @@ Creates a new storage container within a given storage service on Azure. ``` resource "azure_storage_container" "stor-cont" { - name = "terraform-storage-container" - container_access_type = "blob" - storage_service_name = "tfstorserv" + name = "terraform-storage-container" + container_access_type = "blob" + storage_service_name = "tfstorserv" } ```` diff --git a/website/source/docs/providers/azure/r/storage_queue.html.markdown b/website/source/docs/providers/azure/r/storage_queue.html.markdown index 8b2abc5d87..2b9170c478 100644 --- a/website/source/docs/providers/azure/r/storage_queue.html.markdown +++ b/website/source/docs/providers/azure/r/storage_queue.html.markdown @@ -14,8 +14,8 @@ Creates a new storage queue within a given storage service on Azure. ``` resource "azure_storage_queue" "stor-queue" { - name = "terraform-storage-queue" - storage_service_name = "tfstorserv" + name = "terraform-storage-queue" + storage_service_name = "tfstorserv" } ```` diff --git a/website/source/docs/providers/azure/r/storage_service.html.markdown b/website/source/docs/providers/azure/r/storage_service.html.markdown index a1e9fca0c5..6000817de7 100644 --- a/website/source/docs/providers/azure/r/storage_service.html.markdown +++ b/website/source/docs/providers/azure/r/storage_service.html.markdown @@ -14,10 +14,10 @@ Creates a new storage service on Azure in which storage containers may be create ``` resource "azure_storage_service" "tfstor" { - name = "tfstor" - location = "West US" + name = "tfstor" + location = "West US" description = "Made by Terraform." - account_type = "Standard_LRS" + account_type = "Standard_LRS" } ````