Skip to content
This repository has been archived by the owner on Jun 28, 2022. It is now read-only.

Fix S3 Get Param

Compare
Choose a tag to compare
@ari-becker ari-becker released this 22 Jul 07:06
· 11 commits to master since this release
v0.7.1
1f01fe4

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.