We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fa7964 commit 20cb397Copy full SHA for 20cb397
1 file changed
main.tf
@@ -380,7 +380,7 @@ resource "azurerm_app_configuration_key" "ck1" {
380
configuration_store_id = azurerm_app_configuration.uks-config.id
381
key = "key1${random_string.random.result}"
382
type = "kv"
383
- label = "appsecret1"
+ label = "appsecret1-${random_string.random}"
384
value = random_password.vmpassword.result
385
386
depends_on = [
@@ -390,7 +390,7 @@ resource "azurerm_app_configuration_key" "ck2" {
390
391
key = "key2${random_string.random.result}"
392
393
- label = "appsecret2"
+ label = "appsecret2-${random_string.random}"
394
395
396
0 commit comments