Hi all. I'm trying to figure out a way to split a Pulumi stack into smaller parts that I could `pre...
w
Hi all. I'm trying to figure out a way to split a Pulumi stack into smaller parts that I could
preview
and
up
individually if needed (it's a large stack, sometimes we know exactly what changes we want and expect). I thought I could do that using ComponentResources in combination with
pulumi up|preview --target [--target-dependents]
, but so far no luck: when I
pulumi preview --target arn:of:my:ComponentResource
pulumi only looks at the
ComponentResource
and ignores its children. Am I trying to use the wrong tool here? Is there a way to do a partial `preview`/`up` in a stack by selecting a group or component, without having to point to every particular resource?