terraform/quickstart/101-web-app-linux-java/main.tf

9 строки
205 B
HCL

resource "azurerm_resource_group" "default" {
name = "${random_pet.prefix.id}-${var.environment}-rg"
location = var.location
}
resource "random_pet" "prefix" {
prefix = var.prefix
length = 2
}