GitHub Issue #1125 - azure-dev-docs

This commit is contained in:
Tom Archer 2023-05-09 10:38:30 -07:00
parent d710a692c9
commit 7db7b5fa27

View File

@ -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" {