This repository has been archived by the owner on Jun 28, 2022. It is now read-only.
Fix S3 Get Param
The S3 resource's Get Parameter field skip_download
, if specified, needs to be either true or false, so its type was an Optional Bool
. However, the S3 resource internally represents the field as a Text, and does not support reading the resulting YAML from skip_download: true
, rather requiring that the resulting YAML be skip_download: "true"
.
This release fixes the type so that, as an Optional Text
, the correct YAML can be generated. A comment has been added to help clarify this, as it's not intuitive.