Hi, I am new to Pulumi. My team and I are trying t...
# python
b
Hi, I am new to Pulumi. My team and I are trying to set up Pulumi resources on multiple AWS accounts and used S3 as our back up. A teammate has created some resources with this set up, and I am trying to import the existing state and build on top of that. Is it possible this way? When I try to list all stacks against existing S3 state I don't see any stacks, but they appear with --all. How to work with or share existing state across team members? Thanks.
l
If you're not seeing stacks and projects when you run
pulumi stack ls
, it's because you're not in a directory with a Pulumi.yaml file. The
--all
option uses information in ~/.pulumi to find all the Pulumi.yaml files, but the normal use doesn't, it uses the current directory. BTW this question doesn't relate to either python or AWS; the #general channel is a good place to ask this kind of this.