mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 16:23:10 +00:00
Allow AWS endpoints and dualstack (#43497)
This commit is contained in:
committed by
Ryan Brown
parent
2e873be9b5
commit
4b3e5998bf
@@ -759,7 +759,7 @@ def main():
|
||||
if not s3_url and 'S3_URL' in os.environ:
|
||||
s3_url = os.environ['S3_URL']
|
||||
|
||||
if dualstack and s3_url:
|
||||
if dualstack and 'amazonaws.com' not in s3_url:
|
||||
module.fail_json(msg='dualstack only applies to AWS S3')
|
||||
|
||||
if dualstack and not module.botocore_at_least('1.4.45'):
|
||||
|
||||
Reference in New Issue
Block a user