Skip to content

Commit

Permalink
Merge pull request #12 from yext/triggerUpdate
Browse files Browse the repository at this point in the history
support update to cron_schedule in teamcity_build_trigger_schedule
  • Loading branch information
yzhangyext authored Jul 12, 2022
2 parents 211ff08 + be30fd2 commit 95dcbb4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions teamcity/resource_build_trigger_schedule.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,30 +76,37 @@ func resourceBuildTriggerSchedule() *schema.Resource {
"seconds": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"minutes": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"hours": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"day_of_month": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"month": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"day_of_week": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"year": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
},
},
Expand Down

0 comments on commit 95dcbb4

Please sign in to comment.