summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPascal Van Acker <vanacker.pascal@outlook.com>2019-09-18 11:01:28 +0200
committerYunge Zhu <37337818+yungezz@users.noreply.github.com>2019-09-18 17:01:28 +0800
commit24ff3f257b5525ba1b0836b4b0cfc3cdca12be89 (patch)
tree009be0372160f0ad868529bec307760266841a32 /lib
parent7d40f6d53e72c2a5acffe569d800c589731b0212 (diff)
downloadansible-24ff3f257b5525ba1b0836b4b0cfc3cdca12be89.tar.gz
fix azure_rm_rediscache notify notify_keyspace_events type (should be str) (#58922)
Diffstat (limited to 'lib')
-rw-r--r--lib/ansible/modules/cloud/azure/azure_rm_rediscache.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ansible/modules/cloud/azure/azure_rm_rediscache.py b/lib/ansible/modules/cloud/azure/azure_rm_rediscache.py
index 24471cfb40..b6a095a25d 100644
--- a/lib/ansible/modules/cloud/azure/azure_rm_rediscache.py
+++ b/lib/ansible/modules/cloud/azure/azure_rm_rediscache.py
@@ -92,6 +92,7 @@ options:
description:
- Allows clients to receive notifications when certain events occur.
- Please see U(https://docs.microsoft.com/en-us/azure/redis-cache/cache-configure#advanced-settings) for more detail.
+ type: str
shard_count:
description:
- The number of shards to be created when I(sku=premium).
@@ -353,7 +354,7 @@ class AzureRMRedisCaches(AzureRMModuleBase):
]
),
notify_keyspace_events=dict(
- type='int'
+ type='str'
),
shard_count=dict(
type='int'