Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix indentation issues
Browse files Browse the repository at this point in the history
bgelens committed Jul 30, 2018
1 parent 4b23f8f commit ad4102b
Showing 3 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions azurerm/resource_arm_automation_dsc_configuration_test.go
Original file line number Diff line number Diff line change
@@ -106,16 +106,16 @@ 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" {
name = "acctest-%d"
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)
}
10 changes: 5 additions & 5 deletions azurerm/resource_arm_automation_dsc_nodeconfiguration_test.go
Original file line number Diff line number Diff line change
@@ -106,16 +106,16 @@ 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" {
name = "acctest-%d"
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"
8 changes: 4 additions & 4 deletions azurerm/resource_arm_automation_module_test.go
Original file line number Diff line number Diff line change
@@ -106,16 +106,16 @@ 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" {
name = "acctest-%d"
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)

0 comments on commit ad4102b

Please sign in to comment.