Use this data source to access information about all existing trigger schedules in Azure Data Factory.
data "azurerm_data_factory_trigger_schedules" "example" {
data_factory_id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.DataFactory/factories/datafactory1"
}
output "items" {
value = data.azurerm_data_factory_trigger_schedules.example.items
}
The following arguments are supported:
data_factory_id
- (Required) The ID of the Azure Data Factory to fetch trigger schedules from.In addition to the Arguments listed above - the following Attributes are exported:
id
- The ID of the Azure Data Factory.
items
- A list of trigger schedule names available in this Azure Data Factory.
The timeouts
block allows you to specify timeouts for certain actions:
read
- (Defaults to 5 minutes) Used when retrieving the Azure Data Factory trigger schedules.