Skip to content

Commit

Permalink
change sig_v4 param to true by default
Browse files Browse the repository at this point in the history
  • Loading branch information
zollo authored and tremble committed Sep 27, 2022
1 parent 7a786cd commit 01da018
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/modules/s3_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
description:
- Forces the Boto SDK to use Signature Version 4.
- Only applies to get modes, I(mode=get), I(mode=getstr), I(mode=geturl).
default: false
default: true
type: bool
version_added: 5.0.0
permission:
Expand Down Expand Up @@ -966,7 +966,7 @@ def main():
max_keys=dict(default=1000, type='int', no_log=False),
metadata=dict(type='dict'),
mode=dict(choices=['get', 'put', 'delete', 'create', 'geturl', 'getstr', 'delobj', 'list', 'copy'], required=True),
sig_v4=dict(default=False, type='bool'),
sig_v4=dict(default=True, type='bool'),
object=dict(),
permission=dict(type='list', elements='str', default=['private']),
version=dict(default=None),
Expand Down

0 comments on commit 01da018

Please sign in to comment.