Skip to content

Commit

Permalink
removed iis server from win vm (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomArcherMsft committed Nov 25, 2024
1 parent 2b86dd3 commit db80484
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions quickstart/101-backup-vm/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,16 @@ resource "azurerm_windows_virtual_machine" "main" {
}
}

# Generate random text for a unique storage account name
resource "random_id" "random_id" {
keepers = {
# Generate a new ID only when a new resource group is defined
resource_group = azurerm_resource_group.rg.name
}

byte_length = 8
}

resource "random_password" "password" {
length = 20
min_lower = 1
Expand Down

0 comments on commit db80484

Please sign in to comment.