fix azure_rm_rediscache notify notify_keyspace_events type (should be str) (#58922)
This commit is contained in:
parent
7d40f6d53e
commit
24ff3f257b
1 changed files with 2 additions and 1 deletions
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue