-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* pulumi-env: add page * oops forgot a colon * fix typo
- Loading branch information
1 parent
92ad9e9
commit 0f7f619
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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` |