pedrocaseiro
pedrocaseiro

Reputation: 53

Sending SMS through SNS with CloudFormation in eu-west-2 region

Why is this resource giving me the error? :

sms protocol is not a valid protocol

"SNSService" : {
    "Type" : "AWS::SNS::Topic",
    "Properties" : {
        "DisplayName": "SNS",
        "Subscription" : [{
            "Endpoint" : "mynumber",
            "Protocol" : "sms"
        }]
   }
}

Upvotes: 3

Views: 789

Answers (1)

pedrocaseiro
pedrocaseiro

Reputation: 53

Apparently SNS is not ready for the eu-west-2 server, that's the reason.

Upvotes: 2

Related Questions