awslabs / aws-devops-essential

In few hours, quickly learn how to effectively leverage various AWS services to improve developer productivity and reduce the overall time to market for new product capabilities.
Apache License 2.0
714 stars 500 forks source link

'aws sns create-topic' requires a region #18

Closed erikbryant closed 5 years ago

erikbryant commented 5 years ago

Update documentation to include the '--region' flag.

$ aws sns create-topic --name WebApp-Approval-Topic
You must specify a region. You can also configure your region by running "aws configure".
$ aws sns create-topic --name WebApp-Approval-Topic --region us-west-2
{
    "TopicArn": "arn:aws:sns:us-west-2:99999999999:WebApp-Approval-Topic"
}

Issue #, if available:

Description of changes:

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

erikbryant commented 5 years ago

@karthiksambandam