Skip to content

Commit

Permalink
Fix Sprintf args in test case
Browse files Browse the repository at this point in the history
Signed-off-by: Sune Keller <[email protected]>
  • Loading branch information
sirlatrom committed Jun 9, 2020
1 parent 52c9d86 commit d5710c5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,12 +256,12 @@ func testAccAzureRMKeyVaultCertificateIssuer_requiresImport(data acceptance.Test
%s
resource "azurerm_key_vault_certificate_issuer" "import" {
name = "acctestKVCI-%[1]d"
name = "acctestKVCI-%[2]d"
key_vault_id = azurerm_key_vault.test.id
account_id = "test-account"
password = "test"
org_id = "%[1]d"
password = "test-password"
org_id = "test-org"
provider_name = "DigiCert"
}
`, template)
`, template, data.RandomInteger)
}

0 comments on commit d5710c5

Please sign in to comment.