mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-25 09:15:32 +02:00
pulumi: add page (#8410)
This commit is contained in:
parent
5e5c93a257
commit
8eb40d0628
1 changed files with 28 additions and 0 deletions
28
pages/common/pulumi.md
Normal file
28
pages/common/pulumi.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# pulumi
|
||||
|
||||
> Define infrastructure on any cloud using familiar programming languages.
|
||||
> 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`
|
Loading…
Add table
Reference in a new issue