2022-09-25 13:52:54 +01:00
|
|
|
# pulumi
|
|
|
|
|
|
|
|
> Define infrastructure on any cloud using familiar programming languages.
|
2023-11-30 15:07:02 +00:00
|
|
|
> Some subcommands such as `pulumi up` have their own usage documentation.
|
2022-09-25 13:52:54 +01:00
|
|
|
> More information: <https://www.pulumi.com/docs/reference/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`
|