Created
December 19, 2021 14:44
-
-
Save yuvalif/b077208ea127ac210228601d8829b413 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| import boto3 | |
| import sys | |
| if len(sys.argv) == 3: | |
| # topic name as first argument | |
| topic_name = sys.argv[1] | |
| # region name as second argument | |
| region_name = sys.argv[2] | |
| elif len(sys.argv) == 2: | |
| # topic name as first argument | |
| topic_name = sys.argv[1] | |
| region_name = "" | |
| else: | |
| print('Usage: ' + sys.argv[0] + ' <topic name> [region name]') | |
| sys.exit(1) | |
| # endpoint and keys from vstart | |
| endpoint = 'http://127.0.0.1:8000' | |
| access_key='0555b35654ad1656d804' | |
| secret_key='h7GhxuBLTrlhVUyxSPUKUV8r/2EI4ngqJxD7iBdBYLhwluN30JaT3Q==' | |
| client = boto3.client('sns', | |
| endpoint_url=endpoint, | |
| aws_access_key_id=access_key, | |
| region_name=region_name, | |
| aws_secret_access_key=secret_key) | |
| # to see the list of available "regions" use: | |
| # radosgw-admin realm zonegroup list | |
| # this is standard AWS services call, using custom attributes to add AMQP endpoint information to the topic | |
| print(client.create_topic(Name=topic_name, Attributes={'push-endpoint': 'amqp://127.0.0.1:5672', | |
| 'amqp-exchange': 'ex1', | |
| 'amqp-ack-level': 'broker'})) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment