Hello everybody !
As an infra engineer, I’m trying to find the most idiomatic way to create schedules, I currently use the schedule CRUD functions but this approach is not completely satisfying because a schedule obtained by calling the Describe function has some of its fields transformed :
- The type of the Args parameter is lost
- The cron expression is lost (I always get an empty slice)
This makes a comparison impossible to do easily, I always have to either create or update even if the workflows specs were not updated.
There is no official Terraform provider for self-hosted deployments and I would rather not use the UI to maintain my schedules.
Are there other options I may have overlooked ?
Thanks !