16 lines
303 B
HCL
16 lines
303 B
HCL
data "azurerm_client_config" "current" {}
|
|
|
|
resource "azurerm_resource_group" "default" {
|
|
name = "${random_pet.prefix.id}-rg"
|
|
location = var.location
|
|
}
|
|
|
|
resource "random_pet" "prefix" {
|
|
prefix = var.prefix
|
|
length = 2
|
|
}
|
|
|
|
resource "random_integer" "suffix" {
|
|
min = 10000000
|
|
max = 99999999
|
|
} |