Skip to content

Commit

Permalink
comment to indicate struct for recipient set
Browse files Browse the repository at this point in the history
  • Loading branch information
brookesargent committed Feb 28, 2024
1 parent 97bd530 commit 188012f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/models/burn_alerts.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ type BurnAlertResourceModel struct {
Dataset types.String `tfsdk:"dataset"`
SLOID types.String `tfsdk:"slo_id"`
ExhaustionMinutes types.Int64 `tfsdk:"exhaustion_minutes"`
Recipients types.Set `tfsdk:"recipient"`
Recipients types.Set `tfsdk:"recipient"` // NotificationRecipientModel
}
2 changes: 1 addition & 1 deletion internal/models/triggers.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type TriggerResourceModel struct {
AlertType types.String `tfsdk:"alert_type"`
Frequency types.Int64 `tfsdk:"frequency"`
Threshold []TriggerThresholdModel `tfsdk:"threshold"`
Recipients types.Set `tfsdk:"recipient"`
Recipients types.Set `tfsdk:"recipient"` // NotificationRecipientModel
EvaluationSchedule []TriggerEvaluationScheduleModel `tfsdk:"evaluation_schedule"`
}

Expand Down

0 comments on commit 188012f

Please sign in to comment.