Skip to content

Commit d5ae662

Browse files
Update main.tf
missed .result off the random string added to appsecrets.
1 parent 20cb397 commit d5ae662

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ resource "azurerm_app_configuration_key" "ck1" {
380380
configuration_store_id = azurerm_app_configuration.uks-config.id
381381
key = "key1${random_string.random.result}"
382382
type = "kv"
383-
label = "appsecret1-${random_string.random}"
383+
label = "appsecret1-${random_string.random.result}"
384384
value = random_password.vmpassword.result
385385

386386
depends_on = [
@@ -390,7 +390,7 @@ resource "azurerm_app_configuration_key" "ck2" {
390390
configuration_store_id = azurerm_app_configuration.uks-config.id
391391
key = "key2${random_string.random.result}"
392392
type = "kv"
393-
label = "appsecret2-${random_string.random}"
393+
label = "appsecret2-${random_string.random.result}"
394394
value = random_password.vmpassword.result
395395

396396
depends_on = [

0 commit comments

Comments
 (0)