2022-11-18 22:12:00 +01:00

10 lines
204 B
HCL

data "azurerm_client_config" "current" {}
data "http" "ip" {
url = "https://ifconfig.me"
}
resource "azurerm_resource_group" "default" {
name = "rg-${local.basename}"
location = var.location
}