page_title | subcategory | description |
---|---|---|
morpheus_execute_schedule Resource - terraform-provider-morpheus |
Provides an execution schedule resource |
Provides an execution schedule resource
resource "morpheus_execute_schedule" "tf_example_execute_schedule" {
name = "Run daily at 7 AM"
description = "This schedule runs daily at 7 AM Mountain Time"
enabled = false
time_zone = "America/Denver"
schedule = "7 0 * * *"
}
name
(String) The name of the execute scheduleschedule
(String) The cron style syntax for the scheduled executiontime_zone
(String) The time zone used for scheduling
description
(String) The description of the execute scheduleenabled
(Boolean) Whether the execute schedule is enabled
id
(String) The ID of the execute schedule
Import is supported using the following syntax:
terraform import morpheus_execute_schedule.tf_example_execute_schedule 1