skip to Main Content

How to make an azure cost management export run daily and only export that day or previous days data? Using terraform or azure api

Taking the Terraform resource example: resource "azurerm_billing_account_cost_management_export" "example" { name = "example" billing_account_id = "example" recurrence_type = "Daily" recurrence_period_start_date = "2020-08-18T00:00:00Z" recurrence_period_end_date = "2020-09-18T00:00:00Z" export_data_storage_location { container_id = azurerm_storage_container.example.resource_manager_id root_folder_path = "/root/updated" } export_data_options { type = "Usage" time_frame =…

VIEW QUESTION
Back To Top
Search