Skip to content

Instantly share code, notes, and snippets.

@ItayPodhajcer
Created May 29, 2023 13:54
Show Gist options
  • Save ItayPodhajcer/464f79da271463e21413f3edf53ab1f0 to your computer and use it in GitHub Desktop.
Save ItayPodhajcer/464f79da271463e21413f3edf53ab1f0 to your computer and use it in GitHub Desktop.
terraform-did-web-azure/main.tf#zone-and-rg
data "cloudflare_zones" "this" {
filter {
name = var.zone_name
}
}
resource "azurerm_resource_group" "this" {
name = "rg-${var.deployment_name}-${var.location}"
location = var.location
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment