https://pulumi.com logo
Title
a

ambitious-pilot-38837

03/19/2020, 2:37 PM
Hi everyone, new to IaC and pulumi. Is there list of policies/permissions a user needs to have in order to work with pulumi? I created an IAM user with the PowerUser policy and it was missing some permissions: example
iam:CreateRole
. Just wondering before I go ahead and start adding policies until I get
pulumi up
to work.
w

white-balloon-205

03/19/2020, 3:18 PM
Pulumi itself doesn’t really require any permissions - it’s mostly the resources you decide to create/update/delete which will require permissions to create/update/delete the corresponding resources. If you are seeing the need for
iam:CrateRole
, I would expect that to be due to trying to create a Role with Pulumi.
a

ambitious-pilot-38837

03/19/2020, 3:24 PM
thanks for the reply!