mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fixed option description
This commit is contained in:
parent
66777d010b
commit
3fa372e277
1 changed files with 8 additions and 7 deletions
|
@ -20,10 +20,10 @@ short_description: Manage s3 buckets in AWS
|
||||||
description:
|
description:
|
||||||
- Manage s3 buckets in AWS
|
- Manage s3 buckets in AWS
|
||||||
version_added: "2.0"
|
version_added: "2.0"
|
||||||
author: Rob White (@wimnat)
|
author: "Rob White (@wimnat)"
|
||||||
options:
|
options:
|
||||||
force:
|
force:
|
||||||
description:
|
description:
|
||||||
- When trying to delete a bucket, delete all keys in the bucket first (an s3 bucket must be empty for a successful deletion)
|
- When trying to delete a bucket, delete all keys in the bucket first (an s3 bucket must be empty for a successful deletion)
|
||||||
required: false
|
required: false
|
||||||
default: no
|
default: no
|
||||||
|
@ -40,11 +40,12 @@ options:
|
||||||
default: null
|
default: null
|
||||||
region:
|
region:
|
||||||
description:
|
description:
|
||||||
- AWS region to create the bucket in. If not set then the value of the AWS_REGION and EC2_REGION environment variables are checked, followed by the aws_region and ec2_region settings in the Boto config file. If none of those are set the region defaults to the S3 Location: US Standard.
|
- AWS region to create the bucket in. If not set then the value of the AWS_REGION and EC2_REGION environment variables are checked, followed by the aws_region and ec2_region settings in the Boto config file. If none of those are set the region defaults to the S3 Location: US Standard.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
s3_url:
|
s3_url:
|
||||||
description: S3 URL endpoint for usage with Eucalypus, fakes3, etc. Otherwise assumes AWS
|
description:
|
||||||
|
- S3 URL endpoint for usage with Eucalypus, fakes3, etc. Otherwise assumes AWS
|
||||||
default: null
|
default: null
|
||||||
aliases: [ S3_URL ]
|
aliases: [ S3_URL ]
|
||||||
requester_pays:
|
requester_pays:
|
||||||
|
@ -65,12 +66,12 @@ options:
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
versioning:
|
versioning:
|
||||||
description:
|
description:
|
||||||
- Whether versioning is enabled or disabled (note that once versioning is enabled, it can only be suspended)
|
- Whether versioning is enabled or disabled (note that once versioning is enabled, it can only be suspended)
|
||||||
required: false
|
required: false
|
||||||
default: no
|
default: no
|
||||||
choices: [ 'yes', 'no' ]
|
choices: [ 'yes', 'no' ]
|
||||||
|
|
||||||
extends_documentation_fragment: aws
|
extends_documentation_fragment: aws
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
@ -387,4 +388,4 @@ from ansible.module_utils.basic import *
|
||||||
from ansible.module_utils.ec2 import *
|
from ansible.module_utils.ec2 import *
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Reference in a new issue