diff --git a/quickstart/101-azure-virtual-desktop-anf/sig.tf b/quickstart/101-azure-virtual-desktop-anf/sig.tf index acab5246..8c6c30ed 100644 --- a/quickstart/101-azure-virtual-desktop-anf/sig.tf +++ b/quickstart/101-azure-virtual-desktop-anf/sig.tf @@ -5,13 +5,12 @@ resource "azurerm_resource_group" "sigrg" { # generate a random string (consisting of four characters) # https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string -resource "random_string" "rando" { +resource "random_string" "random" { length = 4 upper = false special = false } - # Creates Shared Image Gallery # https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/shared_image_gallery resource "azurerm_shared_image_gallery" "sig" {