We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27e9114 commit 9dd948cCopy full SHA for 9dd948c
examples/provider/provider.tf
@@ -23,12 +23,22 @@ resource "temporal_schedule" "daily_cleanup" {
23
namespace = temporal_namespace.example.name
24
schedule_id = "daily-cleanup-task"
25
26
+ memo = {
27
+ test = "data"
28
+ }
29
spec = {
30
intervals = [{
31
every = "24h"
32
offset = "2h" # Run at 2 AM UTC
33
}]
34
35
+ calendar_items = [{
36
+ year = "2023"
37
+ month = "1,3,7,11"
38
+ day_of_month = "1,11"
39
+ hour = "11-14"
40
+ }]
41
+
42
time_zone = "America/New_York"
43
}
44
0 commit comments