6 lines
159 B
Bash
6 lines
159 B
Bash
#!/usr/bin/env sh
|
|
|
|
for email in $sns_emails; do
|
|
echo $email
|
|
aws sns subscribe --topic-arn "$sns_arn" --protocol email --notification-endpoint "$email"
|
|
done |