From 0eb17142b5e5d05a5d20451d8d8ee66d8e4b76a7 Mon Sep 17 00:00:00 2001 From: whiter Date: Wed, 13 May 2015 16:16:41 +1000 Subject: [PATCH] Added postgresql-license type --- lib/ansible/modules/cloud/amazon/rds.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/cloud/amazon/rds.py b/lib/ansible/modules/cloud/amazon/rds.py index 1c35b54b55..34f45218f0 100755 --- a/lib/ansible/modules/cloud/amazon/rds.py +++ b/lib/ansible/modules/cloud/amazon/rds.py @@ -102,7 +102,7 @@ options: required: false default: null aliases: [] - choices: [ 'license-included', 'bring-your-own-license', 'general-public-license' ] + choices: [ 'license-included', 'bring-your-own-license', 'general-public-license', 'postgresql-license' ] multi_zone: description: - Specifies if this is a Multi-availability-zone deployment. Can not be used in conjunction with zone parameter. Used only when command=create or command=modify. @@ -963,7 +963,7 @@ def main(): db_name = dict(required=False), engine_version = dict(required=False), parameter_group = dict(required=False), - license_model = dict(choices=['license-included', 'bring-your-own-license', 'general-public-license'], required=False), + license_model = dict(choices=['license-included', 'bring-your-own-license', 'general-public-license', 'postgresql-license'], required=False), multi_zone = dict(type='bool', default=False), iops = dict(required=False), security_groups = dict(required=False),