Hello!. Whatever resource I try to create (am crea...
# general
q
Hello!. Whatever resource I try to create (am creating a lot i.e AKS, VM.Postgres, mlflow e.t.c) am just able to see only 2 resources in my pulumi up run ( Storage Account & Resource group) what am I missing? or the rest never shown?
l
If you're running
pulumi up
on a stack that has already been upped, then you're seeing only the differences. You can use
pulumi up --show-sames
or
pulumi stack
to view all resources, including the ones that already exist.
Pulumi is declarative, not imperative: when you run it, it makes the target state match the code. It doesn't necessarily create stuff every time it runs.
🙌 1