-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a3c21d3
commit d72f3b3
Showing
100 changed files
with
1,153 additions
and
931 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
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
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
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
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
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,47 @@ | ||
--- | ||
title: "pulumi config env" | ||
aliases: | ||
- /docs/reference/cli/pulumi_config_env/ | ||
--- | ||
|
||
|
||
|
||
Manage ESC environments for a stack | ||
|
||
## Synopsis | ||
|
||
Manages the ESC environment associated with a specific stack. To create a new environment | ||
from a stack's configuration, use `pulumi config env init`. | ||
|
||
## Options | ||
|
||
``` | ||
-h, --help help for env | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--color string Colorize output. Choices are: always, never, raw, auto (default "auto") | ||
--config-file string Use the configuration values in the specified file rather than detecting the file name | ||
-C, --cwd string Run pulumi as if it had been started in another directory | ||
--disable-integrity-checking Disable integrity checking of checkpoint files | ||
-e, --emoji Enable emojis in the output | ||
--logflow Flow log settings to child processes (like plugins) | ||
--logtostderr Log to stderr instead of to files | ||
--memprofilerate int Enable more precise (and expensive) memory allocation profiles by setting runtime.MemProfileRate | ||
--non-interactive Disable interactive mode for all commands | ||
--profiling string Emit CPU and memory profiles and an execution trace to '[filename].[pid].{cpu,mem,trace}', respectively | ||
-s, --stack string The name of the stack to operate on. Defaults to the current stack | ||
--tracing file: Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local file | ||
-v, --verbose int Enable verbose logging (e.g., v=3); anything >3 is very verbose | ||
``` | ||
|
||
## SEE ALSO | ||
|
||
* [pulumi config](/docs/cli/commands/pulumi_config/) - Manage configuration | ||
* [pulumi config env add](/docs/cli/commands/pulumi_config_env_add/) - Add environments to a stack | ||
* [pulumi config env init](/docs/cli/commands/pulumi_config_env_init/) - Creates an environment for a stack | ||
* [pulumi config env rm](/docs/cli/commands/pulumi_config_env_rm/) - Remove environments from a stack | ||
|
||
###### Auto generated by spf13/cobra on 1-Dec-2023 |
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,51 @@ | ||
--- | ||
title: "pulumi config env add" | ||
aliases: | ||
- /docs/reference/cli/pulumi_config_env_add/ | ||
--- | ||
|
||
|
||
|
||
Add environments to a stack | ||
|
||
## Synopsis | ||
|
||
Adds environments to the end of a stack's import list. Imported environments are merged in order | ||
per the ESC merge rules. The list of stacks behaves as if it were the import list in an anonymous | ||
environment. | ||
|
||
``` | ||
pulumi config env add [flags] | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
-h, --help help for add | ||
--show-secrets Show secret values in plaintext instead of ciphertext | ||
-y, --yes True to save changes without prompting | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--color string Colorize output. Choices are: always, never, raw, auto (default "auto") | ||
--config-file string Use the configuration values in the specified file rather than detecting the file name | ||
-C, --cwd string Run pulumi as if it had been started in another directory | ||
--disable-integrity-checking Disable integrity checking of checkpoint files | ||
-e, --emoji Enable emojis in the output | ||
--logflow Flow log settings to child processes (like plugins) | ||
--logtostderr Log to stderr instead of to files | ||
--memprofilerate int Enable more precise (and expensive) memory allocation profiles by setting runtime.MemProfileRate | ||
--non-interactive Disable interactive mode for all commands | ||
--profiling string Emit CPU and memory profiles and an execution trace to '[filename].[pid].{cpu,mem,trace}', respectively | ||
-s, --stack string The name of the stack to operate on. Defaults to the current stack | ||
--tracing file: Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local file | ||
-v, --verbose int Enable verbose logging (e.g., v=3); anything >3 is very verbose | ||
``` | ||
|
||
## SEE ALSO | ||
|
||
* [pulumi config env](/docs/cli/commands/pulumi_config_env/) - Manage ESC environments for a stack | ||
|
||
###### Auto generated by spf13/cobra on 1-Dec-2023 |
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,53 @@ | ||
--- | ||
title: "pulumi config env init" | ||
aliases: | ||
- /docs/reference/cli/pulumi_config_env_init/ | ||
--- | ||
|
||
|
||
|
||
Creates an environment for a stack | ||
|
||
## Synopsis | ||
|
||
Creates an environment for a specific stack based on the stack's configuration values, | ||
then replaces the stack's configuration values with a reference to that environment. | ||
The environment will be created in the same organization as the stack. | ||
|
||
``` | ||
pulumi config env init [flags] | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
--env string The name of the environment to create. Defaults to "<project name>-<stack name>" | ||
-h, --help help for init | ||
--keep-config Do not remove configuration values from the stack after creating the environment | ||
--show-secrets Show secret values in plaintext instead of ciphertext | ||
-y, --yes True to save the created environment without prompting | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--color string Colorize output. Choices are: always, never, raw, auto (default "auto") | ||
--config-file string Use the configuration values in the specified file rather than detecting the file name | ||
-C, --cwd string Run pulumi as if it had been started in another directory | ||
--disable-integrity-checking Disable integrity checking of checkpoint files | ||
-e, --emoji Enable emojis in the output | ||
--logflow Flow log settings to child processes (like plugins) | ||
--logtostderr Log to stderr instead of to files | ||
--memprofilerate int Enable more precise (and expensive) memory allocation profiles by setting runtime.MemProfileRate | ||
--non-interactive Disable interactive mode for all commands | ||
--profiling string Emit CPU and memory profiles and an execution trace to '[filename].[pid].{cpu,mem,trace}', respectively | ||
-s, --stack string The name of the stack to operate on. Defaults to the current stack | ||
--tracing file: Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local file | ||
-v, --verbose int Enable verbose logging (e.g., v=3); anything >3 is very verbose | ||
``` | ||
|
||
## SEE ALSO | ||
|
||
* [pulumi config env](/docs/cli/commands/pulumi_config_env/) - Manage ESC environments for a stack | ||
|
||
###### Auto generated by spf13/cobra on 1-Dec-2023 |
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,49 @@ | ||
--- | ||
title: "pulumi config env rm" | ||
aliases: | ||
- /docs/reference/cli/pulumi_config_env_rm/ | ||
--- | ||
|
||
|
||
|
||
Remove environments from a stack | ||
|
||
## Synopsis | ||
|
||
Removes an environment from a stack's import list. | ||
|
||
``` | ||
pulumi config env rm [flags] | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
-h, --help help for rm | ||
--show-secrets Show secret values in plaintext instead of ciphertext | ||
-y, --yes True to save changes without prompting | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--color string Colorize output. Choices are: always, never, raw, auto (default "auto") | ||
--config-file string Use the configuration values in the specified file rather than detecting the file name | ||
-C, --cwd string Run pulumi as if it had been started in another directory | ||
--disable-integrity-checking Disable integrity checking of checkpoint files | ||
-e, --emoji Enable emojis in the output | ||
--logflow Flow log settings to child processes (like plugins) | ||
--logtostderr Log to stderr instead of to files | ||
--memprofilerate int Enable more precise (and expensive) memory allocation profiles by setting runtime.MemProfileRate | ||
--non-interactive Disable interactive mode for all commands | ||
--profiling string Emit CPU and memory profiles and an execution trace to '[filename].[pid].{cpu,mem,trace}', respectively | ||
-s, --stack string The name of the stack to operate on. Defaults to the current stack | ||
--tracing file: Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local file | ||
-v, --verbose int Enable verbose logging (e.g., v=3); anything >3 is very verbose | ||
``` | ||
|
||
## SEE ALSO | ||
|
||
* [pulumi config env](/docs/cli/commands/pulumi_config_env/) - Manage ESC environments for a stack | ||
|
||
###### Auto generated by spf13/cobra on 1-Dec-2023 |
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.