Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
magodo committed Jan 12, 2023
1 parent 4eab358 commit 779cf9d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ resource "azurerm_storage_account_local_user" "test" {
ssh_key_enabled = true
ssh_authorized_key {
description = "key1"
key = local.second_public_key
key = local.first_public_key
}
}
`, template)
Expand All @@ -205,7 +205,7 @@ resource "azurerm_storage_account_local_user" "test" {
ssh_password_enabled = true
ssh_authorized_key {
description = "key1"
key = local.second_public_key
key = local.first_public_key
}
}
`, template)
Expand All @@ -223,7 +223,7 @@ resource "azurerm_storage_account_local_user" "test" {
ssh_password_enabled = true
ssh_authorized_key {
description = "key1"
key = local.second_public_key
key = local.first_public_key
}
ssh_authorized_key {
description = "key2"
Expand Down

0 comments on commit 779cf9d

Please sign in to comment.