Doc fixup

This commit is contained in:
Rob White 2015-07-19 13:43:04 +10:00 committed by Matt Clay
parent a979c0db8e
commit 280086f230

View file

@ -26,7 +26,6 @@ options:
description: description:
- "Name of the s3 bucket." - "Name of the s3 bucket."
required: true required: true
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."
@ -47,7 +46,7 @@ options:
description: description:
- "The prefix that should be prepended to the generated log files written to the target_bucket." - "The prefix that should be prepended to the generated log files written to the target_bucket."
required: false required: false
default: no default: ""
extends_documentation_fragment: aws extends_documentation_fragment: aws
''' '''
@ -141,7 +140,7 @@ def main():
argument_spec = ec2_argument_spec() argument_spec = ec2_argument_spec()
argument_spec.update( argument_spec.update(
dict( dict(
name = dict(required=True, default=None), name = dict(required=True),
target_bucket = dict(required=False, default=None), target_bucket = dict(required=False, default=None),
target_prefix = dict(required=False, default=""), target_prefix = dict(required=False, default=""),
state = dict(required=False, default='present', choices=['present', 'absent']) state = dict(required=False, default='present', choices=['present', 'absent'])