add random suffix to resource group name

This commit is contained in:
zjhe
2024-10-05 10:43:31 +08:00
committed by lonegunmanb
parent 181b34291c
commit 7c6d6f9438
6 changed files with 12 additions and 6 deletions

View File

@ -19,7 +19,7 @@ provider "azurerm" {
}
resource "random_password" "password" {
count = var.password == null ? 1 : 0
count = var.password == null ? 1 : 0
length = 20
}