This message was deleted.
# general
s
This message was deleted.
w
It sounds like you are trying to create a
BucketObject
from a directory. That won't work, as a
BucketObject
in AWS represents a single file. You would likely need to recursively walk the folder and create
BucketObjects
for each file you find if that is the desired outcome. There's an example of this here that we use for our pulumi.io site infrastructure: https://github.com/pulumi/docs/blob/master/infrastructure/index.ts#L177-L194
k
Thanks Luke