Merge pull request #221 from TomArcherMsft/UserStory89504

User Story 89504
This commit is contained in:
Mark Gray (MSFT) 2023-05-09 12:41:10 -07:00 committed by GitHub
commit 3110ce9954
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,13 +5,12 @@ resource "azurerm_resource_group" "sigrg" {
# generate a random string (consisting of four characters) # generate a random string (consisting of four characters)
# https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string # https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string
resource "random_string" "rando" { resource "random_string" "random" {
length = 4 length = 4
upper = false upper = false
special = false special = false
} }
# Creates Shared Image Gallery # Creates Shared Image Gallery
# https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/shared_image_gallery # https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/shared_image_gallery
resource "azurerm_shared_image_gallery" "sig" { resource "azurerm_shared_image_gallery" "sig" {