Create and destroy SNS topics. Be aware that this interacts with Amazon's services, and so may incur charges.
This module uses boto
, which can be installed via package, or pip.
This module accepts explicit AWS credentials but can also utilize IAM roles assigned to the instance through Instance Profiles. Dynamic credentials are then automatically obtained from AWS API and no further configuration is necessary. More information available here.
If IAM roles are not used you need to specify them either in a pillar file or in the minion's config file:
sns.keyid: GKTADJGHEIQSXMKKRBJ08H
sns.key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs
It's also possible to specify key
, keyid
and region
via a profile, either
passed in as a dict, or as a string to pull from pillars or minion config:
myprofile:
keyid: GKTADJGHEIQSXMKKRBJ08H
key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs
region: us-east-1
mytopic:
boto3_sns.topic_present:
- region: us-east-1
- keyid: GKTADJGHEIQSXMKKRBJ08H
- key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs
mytopic:
boto3_sns.topic_present:
- region: us-east-1
- profile: mysnsprofile
mytopic:
boto3_sns.topic_present:
- region: us-east-1
- profile:
keyid: GKTADJGHEIQSXMKKRBJ08H
key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs
Ensure the named sns topic is deleted.
Name of the SNS topic.
If True, unsubscribe all subcriptions to the SNS topic before deleting the SNS topic
Region to connect to.
Secret key to be used.
Access key to be used.
A dict with region, key and keyid, or a pillar key (string) that contains a dict with region, key and keyid.
Ensure the SNS topic exists.
Name of the SNS topic.
List of SNS subscriptions.
Each subscription is a dictionary with a protocol and endpoint key:
subscriptions:
- Protocol: https
Endpoint: https://www.example.com/sns-endpoint
- Protocol: sqs
Endpoint: arn:aws:sqs:us-west-2:123456789012:MyQueue
Dictionary of attributes to set on the SNS topic Valid attribute keys are:
Policy: the JSON serialization of the topic's access control policy
- DisplayName: the human-readable name used in the "From" field for notifications
to email and email-json endpoints
DeliveryPolicy: the JSON serialization of the topic's delivery policy
Region to connect to.
Secret key to be used.
Access key to be used.
A dict with region, key and keyid, or a pillar key (string) that contains a dict with region, key and keyid.