private/azure: Don't reuse account names in tests
This commit is contained in:
parent
ad897b9ea2
commit
979586faea
|
@ -20,7 +20,7 @@ func TestAccAzureStorageService(t *testing.T) {
|
||||||
Config: testAccAzureStorageServiceConfig,
|
Config: testAccAzureStorageServiceConfig,
|
||||||
Check: resource.ComposeTestCheckFunc(
|
Check: resource.ComposeTestCheckFunc(
|
||||||
testAccAzureStorageServiceExists(name),
|
testAccAzureStorageServiceExists(name),
|
||||||
resource.TestCheckResourceAttr(name, "name", "tftesting"),
|
resource.TestCheckResourceAttr(name, "name", "tftesting_dis"),
|
||||||
resource.TestCheckResourceAttr(name, "location", "West US"),
|
resource.TestCheckResourceAttr(name, "location", "West US"),
|
||||||
resource.TestCheckResourceAttr(name, "description", "very descriptive"),
|
resource.TestCheckResourceAttr(name, "description", "very descriptive"),
|
||||||
resource.TestCheckResourceAttr(name, "account_type", "Standard_LRS"),
|
resource.TestCheckResourceAttr(name, "account_type", "Standard_LRS"),
|
||||||
|
@ -70,7 +70,7 @@ func testAccAzureStorageServiceDestroyed(s *terraform.State) error {
|
||||||
var testAccAzureStorageServiceConfig = `
|
var testAccAzureStorageServiceConfig = `
|
||||||
resource "azure_storage_service" "foo" {
|
resource "azure_storage_service" "foo" {
|
||||||
# NOTE: storage service names constrained to lowercase letters only.
|
# NOTE: storage service names constrained to lowercase letters only.
|
||||||
name = "tftesting"
|
name = "tftesting_dis"
|
||||||
location = "West US"
|
location = "West US"
|
||||||
description = "very descriptive"
|
description = "very descriptive"
|
||||||
account_type = "Standard_LRS"
|
account_type = "Standard_LRS"
|
||||||
|
|
Loading…
Reference in New Issue