mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-06 02:33:09 +00:00
Skip shard count test in check mode. (#3329)
The shard count is not available in check mode.
This commit is contained in:
@@ -857,7 +857,7 @@ def create_stream(client, stream_name, number_of_shards=1, retention_period=None
|
||||
stream_found, stream_msg, current_stream = (
|
||||
find_stream(client, stream_name, check_mode=check_mode)
|
||||
)
|
||||
if stream_found:
|
||||
if stream_found and not check_mode:
|
||||
if current_stream['ShardsCount'] != number_of_shards:
|
||||
err_msg = 'Can not change the number of shards in a Kinesis Stream'
|
||||
return success, changed, err_msg, results
|
||||
|
||||
Reference in New Issue
Block a user