main.tf (9 lines of code) (raw):
data "azapi_client_config" "current" {}
data "azapi_resource_action" "locations" {
count = var.use_cached_data ? 0 : 1
type = "Microsoft.Resources/subscriptions@2023-07-01"
action = "locations"
method = "GET"
resource_id = "/subscriptions/${data.azapi_client_config.current.subscription_id}"
response_export_values = ["value"]
}