2023-11-30 15:07:02 +00:00
|
|
|
# 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}}`
|
2024-08-31 19:52:27 +01:00
|
|
|
|
|
|
|
- Don't display stack outputs:
|
|
|
|
|
|
|
|
`pulumi up --suppress-outputs`
|
2024-09-12 06:30:12 +01:00
|
|
|
|
|
|
|
- Continue updating the resources, even if an error is encountered:
|
|
|
|
|
|
|
|
`pulumi up --continue-on-error`
|