We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
modules/
Have a question? Please checkout our Slack Community or visit our Slack Archive.
Currently this is managed by modules/config but we want to think of a new interface for this in modules/.
modules/config
The opsgenie_schedule_rotation resource can be associated multiple times to a single schedule. Seems like a type of user and team can be used with it.
Current implementation modules/config/schedule_rotations.tf
New implementation within modules/schedule or in a new submodule called schedule_rotation
schedule_rotation
components: terraform: opsgenie-team-ops: metadata: component: opsgenie-team inherits: - opsgenie-team-defaults settings: spacelift: workspace_enabled: true vars: enabled: true name: ops schedules: minnesota_schedule: enabled: false description: "Minnesota Schedule" timezone: "America/Indianapolis" rotations: bob_ops: # could use the key of the rotation if `name` key is omitted name: "bob_ops" start_date: "2019-06-18T17:00:00Z" end_date: "2019-06-20T17:30:00Z" type: "hourly" length: 6 time_restriction: type: "time-of-day" restriction: start_hour: 1 start_min: 1 end_hour: 10 end_min: 1 participants: - type: user user: bob - type: team user: ops
or perhaps
rotations: - name: "bob_ops" start_date: "2019-06-18T17:00:00Z" end_date: "2019-06-20T17:30:00Z"
and/or perhaps
participants: users: - bob teams: - ops
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Have a question? Please checkout our Slack Community or visit our Slack Archive.
Describe the Feature
Currently this is managed by
modules/config
but we want to think of a new interface for this inmodules/
.The opsgenie_schedule_rotation resource can be associated multiple times to a single schedule. Seems like a type of user and team can be used with it.
Current implementation modules/config/schedule_rotations.tf
New implementation within modules/schedule or in a new submodule called
schedule_rotation
or perhaps
and/or perhaps
The text was updated successfully, but these errors were encountered: