This message was deleted.
# general
s
This message was deleted.
b
trying cloudtrail generated policies now. would be nice if this was visible in pulumi though
even just a way to preview the AWS commands an update will issue would help
w
This looks like your AWS creds do not have permission to create an S3 bucket. As part of the getting started sequence did you use
aws configure
or environment variables to set up your AWS access? Can you use the AWS CLI to create a bucket? Something like
aws s3 mb <s3://bucket-name>
?
b
nope, creds were good. turned out it was a few missing perms where it wasn't obvious to me that they were being used
like BucketLifecycle etc
the challenge is having to wait for cloudtrail to log the requsts and then go through the logs to see what failed
thats why i was wondering if its possible to preview all the API commands pulumi is going to send for a stack
w
The --debug and -v=9 flags provide the maximum debugging from the cli. But as you noted it doesn’t give detailed API inspection. That said, in case it helps, this issue includes some tips and tricks around attaching a debugger: https://github.com/pulumi/pulumi/issues/1372
👍 1