Skip to content

Commit

Permalink
fix: set the correct property (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
taj-p authored Nov 24, 2022
1 parent 4f440fd commit f6f173e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentry/resource_sentry_metric_alert.go
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ func expandMetricAlertTriggerActions(actionList []interface{}) ([]*sentry.Metric
}
}
if v, ok := actionMap["alert_rule_trigger_id"].(string); ok && v != "" {
action.InputChannelID = sentry.String(v)
action.AlertRuleTriggerID = sentry.String(v)
}
if v, ok := actionMap["description"].(string); ok && v != "" {
action.Description = sentry.String(v)
Expand Down

0 comments on commit f6f173e

Please sign in to comment.