Skip to content

Instantly share code, notes, and snippets.

@KyMidd
Created June 7, 2024 16:12
Show Gist options
  • Select an option

  • Save KyMidd/b9386255f63a2072c854d0b9bd585b98 to your computer and use it in GitHub Desktop.

Select an option

Save KyMidd/b9386255f63a2072c854d0b9bd585b98 to your computer and use it in GitHub Desktop.
# Find all RGs in the subscription and filter
# This is used to prevent a failure when the RG doesn't exist yet
data "azapi_resource_list" "subscription_rgs" {
type = "Microsoft.Resources/resourceGroups@2022-09-01"
parent_id = "/subscriptions/${data.azurerm_subscription.current.subscription_id}"
response_export_values = ["*"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment