@@ -126,13 +126,13 @@ func TestAccSentryIssueAlert_basic(t *testing.T) {
126
126
resource .TestCheckResourceAttr (rn , "actions.2.id" , "sentry.rules.actions.notify_event.NotifyEventAction" ),
127
127
resource .TestCheckTypeSetElemNestedAttrs (rn , "actions.*" , map [string ]string {
128
128
"id" : "sentry.mail.actions.NotifyEmailAction" ,
129
- "name" : "Send a notification to IssueOwners" ,
129
+ "name" : "Send a notification to IssueOwners and if none can be found then send a notification to ActiveMembers " ,
130
130
"targetType" : "IssueOwners" ,
131
131
"targetIdentifier" : "" ,
132
132
}),
133
133
resource .TestCheckTypeSetElemNestedAttrs (rn , "actions.*" , map [string ]string {
134
134
"id" : "sentry.mail.actions.NotifyEmailAction" ,
135
- "name" : "Send a notification to Team" ,
135
+ "name" : "Send a notification to Team and if none can be found then send a notification to ActiveMembers " ,
136
136
"targetType" : "Team" ,
137
137
"targetIdentifier" : "" ,
138
138
}),
@@ -311,13 +311,13 @@ resource "sentry_issue_alert" "test" {
311
311
actions = [
312
312
{
313
313
id = "sentry.mail.actions.NotifyEmailAction"
314
- name = "Send a notification to IssueOwners"
314
+ name = "Send a notification to IssueOwners and if none can be found then send a notification to ActiveMembers "
315
315
targetType = "IssueOwners"
316
316
targetIdentifier = ""
317
317
},
318
318
{
319
319
id = "sentry.mail.actions.NotifyEmailAction"
320
- name = "Send a notification to Team"
320
+ name = "Send a notification to Team and if none can be found then send a notification to ActiveMembers "
321
321
targetType = "Team"
322
322
targetIdentifier = sentry_team.test.team_id
323
323
},
0 commit comments