mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 02:55:25 +02:00
pulumi-env: add page (#15661)
* pulumi-env: add page * oops forgot a colon * fix typo
This commit is contained in:
parent
92ad9e969c
commit
0f7f619c62
1 changed files with 32 additions and 0 deletions
32
pages/common/pulumi-env.md
Normal file
32
pages/common/pulumi-env.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# pulumi env
|
||||
|
||||
> Manage Pulumi environments.
|
||||
> More information: <https://www.pulumi.com/docs/iac/cli/commands/pulumi_env/>.
|
||||
|
||||
- List all environments:
|
||||
|
||||
`pulumi env ls`
|
||||
|
||||
- Create an environment:
|
||||
|
||||
`pulumi env init {{environment_name}}`
|
||||
|
||||
- Set a value in an environment:
|
||||
|
||||
`pulumi env set {{environment_name}} {{key}} {{value}}`
|
||||
|
||||
- Edit an environment definition:
|
||||
|
||||
`pulumi env edit {{environment_name}}`
|
||||
|
||||
- Delete a value from an environment:
|
||||
|
||||
`pulumi env rm {{environment_name}} {{key}}`
|
||||
|
||||
- Delete an environment entirely:
|
||||
|
||||
`pulumi env rm {{environment_name}}`
|
||||
|
||||
- Display help:
|
||||
|
||||
`pulumi env --help`
|
Loading…
Add table
Reference in a new issue