Skip to content

Commit

Permalink
Adding RDS engine support for oracle-se2 (#646)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexLast authored and markpeek committed Jan 18, 2017
1 parent 86070d3 commit 4549740
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions troposphere/rds.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
# http://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBInstance.html

VALID_STORAGE_TYPES = ('standard', 'gp2', 'io1')
VALID_DB_ENGINES = ('MySQL', 'mysql', 'oracle-se1', 'oracle-se', 'oracle-ee',
'sqlserver-ee', 'sqlserver-se', 'sqlserver-ex',
'sqlserver-web', 'postgres', 'aurora', 'mariadb')
VALID_DB_ENGINES = ('MySQL', 'mysql', 'oracle-se1', 'oracle-se2', 'oracle-se',
'oracle-ee', 'sqlserver-ee', 'sqlserver-se',
'sqlserver-ex', 'sqlserver-web', 'postgres', 'aurora',
'mariadb')
VALID_LICENSE_MODELS = ('license-included', 'bring-your-own-license',
'general-public-license', 'postgresql-license')

Expand Down

0 comments on commit 4549740

Please sign in to comment.