Hello, I'm using Pulumi to setup all my AWS accoun...
# aws
p
Hello, I'm using Pulumi to setup all my AWS account, sometimes I'd like to tweak a small setting for example a Policy but when I
pulumi up
it will also build and deploy a new docker image. As expected from my pulumi script, but my intention this time it just to tweak the setting not to deploy a new docker image of the same code, what is the recommended way to handle such a case ?
l
Either find out what's causing the docker image to be recreated and eliminate that, or separate the resources into different projects.