main.resource_graph_query.tf (16 lines of code) (raw):

data "azurerm_resource_group" "this" { name = var.resource_group_name } resource "azapi_resource" "query" { type = "Microsoft.ResourceGraph/queries@2018-09-01-preview" body = { properties = { description = var.description query = var.query_string } } location = var.location name = var.name parent_id = data.azurerm_resource_group.this.id tags = var.tags }