Mark this as a string so it is rendered in the docs
When this was treated as a boolean, sphinx was leaving the Default column on http://docs.ansible.com/ansible/ec2_module.html blank, implying it would use AWS's default. In reality, it passes False, which overrides the defaults at AWS (it's possible to boot an instance which AWS claims will always have EBS optimization without it because of this silently passed False).
This commit is contained in:
parent
83b5220068
commit
735eefb2ca
1 changed files with 1 additions and 1 deletions
|
@ -225,7 +225,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- whether instance is using optimized EBS volumes, see U(http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSOptimized.html)
|
- whether instance is using optimized EBS volumes, see U(http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSOptimized.html)
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: 'false'
|
||||||
exact_count:
|
exact_count:
|
||||||
version_added: "1.5"
|
version_added: "1.5"
|
||||||
description:
|
description:
|
||||||
|
|
Loading…
Reference in a new issue