Terraform support for Azure logic app recurrence trigger

Currently I am trying to use terraform to manage cloud resources for azure. When I am testing logic app’s terraform following this page:

https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/logic_app_trigger_recurrence

I don’t find the terraform is supporting “On these days” and “At these hours” feature, which is what I want and am able to set up via portal manually(set attached pic)


It seems the most I can do is :

resource “azurerm_logic_app_trigger_recurrence” “XXX_trigger” {
name = “Sunday”
logic_app_id = azurerm_logic_app_workflow.XXX.id
frequency = “Week”
interval = 1
}

Do I miss anything? Or is there any other workaround to achieve the same feature? Thanks very much!

Using start_time and maybe multiple definitions?

Or use local-exec provisioner and the CLI (less preferred).