Pulumi Operations: Difference between revisions
Jump to navigation
Jump to search
Line 19: | Line 19: | ||
===<tt>-c|--cloud-url</tt>=== | ===<tt>-c|--cloud-url</tt>=== | ||
===<tt>--local</tt>=== | ===<tt>--local</tt>=== | ||
<code>--local</code> is a shortcut for < | <code>--local</code> is a shortcut for: | ||
<syntaxhighlight lang='bash'> | |||
pulumi login file://~ | |||
</syntaxhighlight> | |||
=Info= | =Info= |
Revision as of 04:03, 8 January 2022
External
Internal
Logout
pulumi logout
Login
pulumi login [--cloud-url https://something.example.com]
Without argument, logs into the Pulumi-managed backend. Credentials are cached locally and can be viewed with ~/.pulumi/credentials.json
.
For a "https://" URL, the command line process will access the remote backend via REST.
For a "file://" URL, the state is managed locally.
Options
-c|--cloud-url
--local
--local
is a shortcut for:
pulumi login file://~
Info
Dumps identity, backend name and URL, Open Directory groups, etc.
pulumi whoami --verbose
This reads ~/.pulumi/credentials.json
.
Organization Info
pulumi org ls
pulumi org get <org-name>
Stack Operations
List Stacks
Display the list associated with the current project.
pulumi stack ls
Select a Stack
pulumi stack select
Display Stack Resources
pulumi stack
Display Stack Tags
pulumi stack tag ls
Project Operations
New Project
Create a new project and stack from template.
pulumi new
Plugin Operations
List
pulumi plugin ls
Apply Infrastructure
pulumi up