1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-15 18:15:24 +02:00
tldr/pages/common/pulumi-up.md
2025-05-10 22:36:11 +05:30

570 B

pulumi up

Create or update the resources in a stack. More information: https://www.pulumi.com/docs/iac/cli/commands/pulumi_up/.

  • Preview and deploy changes to a program and/or infrastructure:

pulumi up

  • Automatically approve and perform the update after previewing it:

pulumi up {{[-y|--yes]}}

  • Preview and deploy changes in a specific stack:

pulumi up {{[-s|--stack]}} {{stack}}

  • Don't display stack outputs:

pulumi up --suppress-outputs

  • Continue updating the resources, even if an error is encountered:

pulumi up --continue-on-error