Skip to content

Instantly share code, notes, and snippets.

@ikai
Created November 19, 2015 01:37
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ikai/c79be091f98da1b709ee to your computer and use it in GitHub Desktop.
Save ikai/c79be091f98da1b709ee to your computer and use it in GitHub Desktop.
Simplest boto3 example for creating an RDS PostgreSQL instance
import time
import boto3
import botocore
def main():
db_identifier = 'yourDBID'
rds = boto3.client('rds')
try:
rds.create_db_instance(DBInstanceIdentifier=db_identifier,
AllocatedStorage=200,
DBName='yourdbname',
Engine='postgres',
# General purpose SSD
StorageType='gp2',
StorageEncrypted=True,
AutoMinorVersionUpgrade=True,
# Set this to true later?
MultiAZ=False,
MasterUsername='youruser',
MasterUserPassword='yourpassword',
VpcSecurityGroupIds=['YOUR_SECURITY_GROUP_ID'],
DBInstanceClass='db.m3.2xlarge',
Tags=[{'Key': 'MyTag', 'Value': 'Hawaii'}])
print 'Starting RDS instance with ID: %s' % db_identifier
except botocore.exceptions.ClientError as e:
if 'DBInstanceAlreadyExists' in e.message:
print 'DB instance %s exists already, continuing to poll ...' % db_identifier
else:
raise
running = True
while running:
response = rds.describe_db_instances(DBInstanceIdentifier=db_identifier)
db_instances = response['DBInstances']
if len(db_instances) != 1:
raise Exception('Whoa cowboy! More than one DB instance returned; this should never happen')
db_instance = db_instances[0]
status = db_instance['DBInstanceStatus']
print 'Last DB status: %s' % status
time.sleep(5)
if status == 'available':
endpoint = db_instance['Endpoint']
host = endpoint['Address']
# port = endpoint['Port']
print 'DB instance ready with host: %s' % host
running = False
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment