Heads up:
https://github.com/cloudposse/terraform-aws-components/blob/main/modules/s3-bucket/README.md.
That doc says
prefix: logs/, but the code will create a double slash since
the format is %s/%s/ resulting in:
logs//some-name.
A simple fix is to
change this line to include a
replace(//, /, ...) sort of thing, but there could be a better fix of clearing a suffix
/ or something else.
We're tackling this internally soon, but want to raise it for the larger community