From 24ff3f257b5525ba1b0836b4b0cfc3cdca12be89 Mon Sep 17 00:00:00 2001 From: Pascal Van Acker Date: Wed, 18 Sep 2019 11:01:28 +0200 Subject: [PATCH] fix azure_rm_rediscache notify notify_keyspace_events type (should be str) (#58922) --- lib/ansible/modules/cloud/azure/azure_rm_rediscache.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/azure/azure_rm_rediscache.py b/lib/ansible/modules/cloud/azure/azure_rm_rediscache.py index 24471cfb400..b6a095a25dc 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'