From ad4102b8998c45b63d21a75a36fd8e9d5a59a62f Mon Sep 17 00:00:00 2001 From: Ben Gelens Date: Mon, 30 Jul 2018 20:30:46 +0200 Subject: [PATCH] fix indentation issues --- .../resource_arm_automation_dsc_configuration_test.go | 10 +++++----- ...source_arm_automation_dsc_nodeconfiguration_test.go | 10 +++++----- azurerm/resource_arm_automation_module_test.go | 8 ++++---- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/azurerm/resource_arm_automation_dsc_configuration_test.go b/azurerm/resource_arm_automation_dsc_configuration_test.go index 562d103d04f1c..82dce38e2d7c2 100644 --- a/azurerm/resource_arm_automation_dsc_configuration_test.go +++ b/azurerm/resource_arm_automation_dsc_configuration_test.go @@ -106,8 +106,8 @@ func testCheckAzureRMAutomationDscConfigurationExists(name string) resource.Test func testAccAzureRMAutomationDscConfiguration_basic(rInt int, location string) string { return fmt.Sprintf(` resource "azurerm_resource_group" "test" { - name = "acctestRG-%d" - location = "%s" + name = "acctestRG-%d" + location = "%s" } resource "azurerm_automation_account" "test" { @@ -115,7 +115,7 @@ resource "azurerm_automation_account" "test" { location = "${azurerm_resource_group.test.location}" resource_group_name = "${azurerm_resource_group.test.name}" sku { - name = "Basic" + name = "Basic" } } @@ -124,7 +124,7 @@ resource "azurerm_automation_dsc_configuration" "test" { resource_group_name = "${azurerm_resource_group.test.name}" automation_account_name = "${azurerm_automation_account.test.name}" location = "${azurerm_resource_group.test.location}" - content = "configuration test {}" - } + content = "configuration test {}" +} `, rInt, location, rInt) } diff --git a/azurerm/resource_arm_automation_dsc_nodeconfiguration_test.go b/azurerm/resource_arm_automation_dsc_nodeconfiguration_test.go index 7b031185f67f8..03d78fd4cbb31 100644 --- a/azurerm/resource_arm_automation_dsc_nodeconfiguration_test.go +++ b/azurerm/resource_arm_automation_dsc_nodeconfiguration_test.go @@ -106,8 +106,8 @@ func testCheckAzureRMAutomationDscNodeConfigurationExists(name string) resource. func testAccAzureRMAutomationDscNodeConfiguration_basic(rInt int, location string) string { return fmt.Sprintf(` resource "azurerm_resource_group" "test" { - name = "acctestRG-%d" - location = "%s" + name = "acctestRG-%d" + location = "%s" } resource "azurerm_automation_account" "test" { @@ -115,7 +115,7 @@ resource "azurerm_automation_account" "test" { location = "${azurerm_resource_group.test.location}" resource_group_name = "${azurerm_resource_group.test.name}" sku { - name = "Basic" + name = "Basic" } } @@ -124,8 +124,8 @@ resource "azurerm_automation_dsc_configuration" "test" { resource_group_name = "${azurerm_resource_group.test.name}" automation_account_name = "${azurerm_automation_account.test.name}" location = "${azurerm_resource_group.test.location}" - content = "configuration test {}" - } + content = "configuration test {}" +} resource "azurerm_automation_dsc_nodeconfiguration" "test" { name = "test.localhost" diff --git a/azurerm/resource_arm_automation_module_test.go b/azurerm/resource_arm_automation_module_test.go index 89b78abd9d351..6e435b5aa7c26 100644 --- a/azurerm/resource_arm_automation_module_test.go +++ b/azurerm/resource_arm_automation_module_test.go @@ -106,8 +106,8 @@ func testCheckAzureRMAutomationModuleExists(name string) resource.TestCheckFunc func testAccAzureRMAutomationModule_basic(rInt int, location string) string { return fmt.Sprintf(` resource "azurerm_resource_group" "test" { - name = "acctestRG-%d" - location = "%s" + name = "acctestRG-%d" + location = "%s" } resource "azurerm_automation_account" "test" { @@ -115,7 +115,7 @@ resource "azurerm_automation_account" "test" { location = "${azurerm_resource_group.test.location}" resource_group_name = "${azurerm_resource_group.test.name}" sku { - name = "Basic" + name = "Basic" } } @@ -125,7 +125,7 @@ resource "azurerm_automation_module" "test" { automation_account_name = "${azurerm_automation_account.test.name}" module_link = { - uri = "https://devopsgallerystorage.blob.core.windows.net/packages/xactivedirectory.2.19.0.nupkg" + uri = "https://devopsgallerystorage.blob.core.windows.net/packages/xactivedirectory.2.19.0.nupkg" } } `, rInt, location, rInt)