1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 08:22:09 +02:00
tldr/pages/common/pulumi.md
Lena b596b78b18
pages/*: standardize mentioning subcommands without the main command (#13626)
* pages/*: standardize mentioning subcommands without the main command

* CONTRIBUTING: clarify that pages should only mention the subcommand
2024-10-04 21:14:41 +02:00

33 lines
736 B
Markdown

# pulumi
> Define infrastructure on any cloud using familiar programming languages.
> Some subcommands such as `up` have their own usage documentation.
> More information: <https://www.pulumi.com/docs/cli>.
- Create a new project using a template:
`pulumi new`
- Create a new stack using an isolated deployment target:
`pulumi stack init`
- Configure variables (e.g. keys, regions, etc.) interactively:
`pulumi config`
- Preview and deploy changes to a program and/or infrastructure:
`pulumi up`
- Preview deployment changes without performing them (dry-run):
`pulumi preview`
- Destroy a program and its infrastructure:
`pulumi destroy`
- Use Pulumi locally, independent of a Pulumi Cloud:
`pulumi login {{-l|--local}}`