Adding support for memcached1.5 and redis5.0 parameter group families. (#54571)
This commit is contained in:
parent
6a5d6a56f5
commit
a39051067b
1 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- The name of the cache parameter group family that the cache parameter group can be used with.
|
- The name of the cache parameter group family that the cache parameter group can be used with.
|
||||||
Required when creating a cache parameter group.
|
Required when creating a cache parameter group.
|
||||||
choices: ['memcached1.4', 'redis2.6', 'redis2.8', 'redis3.2', 'redis4.0']
|
choices: ['memcached1.4', 'memcached1.5', 'redis2.6', 'redis2.8', 'redis3.2', 'redis4.0', 'redis5.0']
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- A user-specified name for the cache parameter group.
|
- A user-specified name for the cache parameter group.
|
||||||
|
@ -285,7 +285,7 @@ def main():
|
||||||
argument_spec = ec2_argument_spec()
|
argument_spec = ec2_argument_spec()
|
||||||
argument_spec.update(
|
argument_spec.update(
|
||||||
dict(
|
dict(
|
||||||
group_family=dict(type='str', choices=['memcached1.4', 'redis2.6', 'redis2.8', 'redis3.2', 'redis4.0']),
|
group_family=dict(type='str', choices=['memcached1.4', 'memcached1.5', 'redis2.6', 'redis2.8', 'redis3.2', 'redis4.0', 'redis5.0']),
|
||||||
name=dict(required=True, type='str'),
|
name=dict(required=True, type='str'),
|
||||||
description=dict(default='', type='str'),
|
description=dict(default='', type='str'),
|
||||||
state=dict(required=True),
|
state=dict(required=True),
|
||||||
|
|
Loading…
Reference in a new issue