Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
cjgajard committed Apr 5, 2024
1 parent d126d26 commit 4befe31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pagerduty/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ func Provider(isMux bool) *schema.Provider {
"pagerduty_escalation_policy": resourcePagerDutyEscalationPolicy(),
"pagerduty_maintenance_window": resourcePagerDutyMaintenanceWindow(),
"pagerduty_schedule": resourcePagerDutySchedule(),
"pagerduty_service": resourcePagerDutyService(),
"pagerduty_service_integration": resourcePagerDutyServiceIntegration(),
"pagerduty_team": resourcePagerDutyTeam(),
"pagerduty_team_membership": resourcePagerDutyTeamMembership(),
Expand Down
2 changes: 1 addition & 1 deletion pagerdutyplugin/resource_pagerduty_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func (r *resourceService) Schema(ctx context.Context, req resource.SchemaRequest
"alert_creation": schema.StringAttribute{
Optional: true,
Computed: true,
Default: stringdefault.StaticString("create_incidents"),
Default: stringdefault.StaticString("create_alerts_and_incidents"),
Validators: []validator.String{
stringvalidator.OneOf("create_alerts_and_incidents", "create_incidents"),
},
Expand Down

0 comments on commit 4befe31

Please sign in to comment.