This message was deleted.
# getting-started
s
This message was deleted.
h
Just checking, but does the
index.html
file you're uploading exist in the directory you're running pulumi up from?
b
howdy @helpful-tent-95136 ... yes I do see it there
h
ahh you haven't configured the bucket as a website, so the
website_endpoint
is none instead of string
Copy code
bucket = s3.Bucket('my-bucket',
    website=s3.BucketWebsiteArgs(
        index_document="index.html",
    ))
b
ah!
thanks for that @helpful-tent-95136 serves me right for doing this late...my eyes did not catch that and I glossed right over it... Thanks!