pulumi import
Import resources into an existing stack
Synopsis
Import resources into an existing stack.
Resources that are not managed by Pulumi can be imported into a Pulumi stack using this command. A definition for each resource will be printed to stdout in the language used by the project associated with the stack; these definitions should be added to the Pulumi program. The resources are protected from deletion by default.
Should you want to import your resource(s) without protection, you can pass
--protect=false
as an argument to the command. This will leave all resources unprotected.
A single resource may be specified in the command line arguments or a set of resources may be specified by a JSON file. This file must contain an object of the following form:
{
"nameTable": {
"provider-or-parent-name-0": "provider-or-parent-urn-0",
...
"provider-or-parent-name-n": "provider-or-parent-urn-n",
},
"resources": [
{
"type": "type-token",
"name": "name",
"id": "resource-id",
"parent": "optional-parent-name",
"provider": "optional-provider-name",
"version": "optional-provider-version",
},
...
{
...
}
]
}
The name table maps language names to parent and provider URNs. These names are used in the genrated definitions, and should match the corresponding declarations in the source program. This table is required if any parents or providers are specified by the resources to import.
The resources list contains the set of resources to import. Each resource is specified as a triple of its type, name, and ID. The format of the ID is specific to the resource type. Each resource may specify the name of a parent or provider; these names must correspond to entries in the name table. If a resource does not specify a provider, it will be imported using the default provider for its type. A resource that does specify a provider may specify the version of the provider that will be used for its import.
pulumi import [type] [name] [id] [flags]
Options
--config-file string Use the configuration values in the specified file rather than detecting the file name
-d, --debug Print detailed debugging output during resource operations
--diff Display operation as a rich diff showing the overall change
-f, --file string The path to a JSON-encoded file containing a list of resources to import
-h, --help help for import
-m, --message string Optional message to associate with the update operation
-o, --out string The path to the file that will contain the generated resource declarations
-p, --parallel int Allow P resource operations to run in parallel at once (1 for no parallelism). Defaults to unbounded. (default 2147483647)
--parent string The name and URN of the parent resource in the format name=urn, where name is the variable name of the parent resource
--protect Allow resources to be imported with protection from deletion enabled (default true)
--provider string The name and URN of the provider to use for the import in the format name=urn, where name is the variable name for the provider resource
--skip-preview Do not perform a preview before performing the refresh
-s, --stack string The name of the stack to operate on. Defaults to the current stack
--suppress-outputs Suppress display of stack outputs (in case they contain sensitive values)
--suppress-permalink string[="false"] Suppress display of the state permalink
-y, --yes Automatically approve and perform the refresh after previewing it
Options inherited from parent commands
--color string Colorize output. Choices are: always, never, raw, auto (default "auto")
-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
--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
--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 - Pulumi command line