LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

pulumi-about

Display Pulumi environment diagnostics

TLDR

Show Pulumi version and environment info
$ pulumi about
copy
Show output as JSON
$ pulumi about --json
copy
Include transitive plugin dependencies
$ pulumi about --transitive
copy
Show info for a specific stack
$ pulumi about --stack [org/project/dev]
copy

SYNOPSIS

pulumi about [options]

DESCRIPTION

pulumi about displays diagnostic information about the local Pulumi environment. Output covers the Pulumi CLI version, the host OS and architecture, the active backend (Pulumi Cloud, S3, Azure Blob, etc.), the current user, and the language runtime plus any installed resource plugins.When run inside a Pulumi project, it also reports the project name, runtime, and the currently selected stack. The information is primarily intended for support tickets and CI debugging — Pulumi staff frequently ask for the output when triaging bug reports.

PARAMETERS

-j, --json

Emit output as JSON, suitable for scripting.
-t, --transitive
Include transitive language plugin dependencies in the output.
-s, --stack name
Run against a specific stack (defaults to the currently selected stack).

CAVEATS

The output includes paths and stack identifiers; redact sensitive values before sharing publicly. Some fields are only populated inside a Pulumi project directory.

SEE ALSO

Copied to clipboard
Kai