1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 23:22:07 +02:00
tldr/pages/common/pulumi-up.md
Nelson Figueroa e22e199d75
pulumi-up: add --continue-on-error example (#13674)
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
2024-09-12 07:30:12 +02:00

548 B

pulumi up

Create or update the resources in a stack. More information: https://www.pulumi.com/docs/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 --yes

  • Preview and deploy changes in a specific stack:

pulumi up --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