Added readme file

This commit is contained in:
Tom Archer
2022-03-04 10:18:32 -08:00
parent 679c91f666
commit 62f0de1b76
5 changed files with 63 additions and 7 deletions

View File

@ -1,3 +1,12 @@
resource "random_pet" "rg-name" {
prefix = var.name_prefix
}
resource "azurerm_resource_group" "default" {
name = random_pet.rg-name.id
location = var.location
}
# Locals block for hardcoded names
locals {
backend_address_pool_name = "${azurerm_virtual_network.test.name}-beap"