Skip to content

Commit 906f5ba

Browse files
Update main.tf
1 parent 29a4de0 commit 906f5ba

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ resource "azurerm_key_vault_access_policy" "servicebus" {
314314
*******************************************************************************/
315315
resource "azurerm_key_vault_secret" "vmpassword1" {
316316
depends_on = [azurerm_key_vault.kv1]
317-
name = "vmpass1-${random_sting.random.result}"
317+
name = "vmpass1-${random_string.random.result}"
318318
value = random_password.vmpassword.result
319319
key_vault_id = azurerm_key_vault.kv1.id
320320
content_type = "uks VM Password Secret"
@@ -323,7 +323,7 @@ resource "azurerm_key_vault_secret" "vmpassword1" {
323323

324324
resource "azurerm_key_vault_secret" "vmpassword2" {
325325
depends_on = [azurerm_key_vault.kv1]
326-
name = "vmpass2-${random_sting.random.result}"
326+
name = "vmpass2-${random_string.random.result}"
327327
value = random_password.vmpassword.result
328328
key_vault_id = azurerm_key_vault.kv1.id
329329
content_type = "ukw VM Password Secret"
@@ -949,7 +949,7 @@ resource "azurerm_servicebus_topic" "updates" {
949949
}
950950

951951
resource "azurerm_key_vault_key" "sb_key" {
952-
name = "sb-cmk-${random_sting.random.result}"
952+
name = "sb-cmk-${random_string.random.result}"
953953
key_vault_id = azurerm_key_vault.kv1.id
954954
# checkov:skip=CKV_AZURE_112 reason="Not using HSM-backed key by design"
955955
key_type = "RSA"
@@ -996,7 +996,7 @@ resource "azurerm_cosmosdb_account" "cs_cosmosdb" {
996996
}
997997

998998
resource "azurerm_key_vault_key" "cosmosdb_key" {
999-
name = "cosmos-cmk-${random_sting.random.result}"
999+
name = "cosmos-cmk-${random_string.random.result}"
10001000
key_vault_id = azurerm_key_vault.kv1.id
10011001
# checkov:skip=CKV_AZURE_112 reason="Not using HSM-backed key by design"
10021002
key_type = "RSA"

0 commit comments

Comments
 (0)