# Pulumi

{% hint style="info" %}
Feature previews are subject to change, may contain bugs, and have not yet been ironed out based on real production usage.
{% endhint %}

On a high level, [Pulumi](https://github.com/pulumi/pulumi) has a very similar flow to Terraform. It uses a state backend, provides dry run functionality, reconciles the actual world with the desired state. In this article we'll dive into how each of the concepts in Spacelift translates into working with Pulumi.

However, if you're the type that prefers to start with doing, instead of reading too much, there are quickstarts for each of the runtimes supported by Pulumi:

* [C#](/spacelift/vendors/pulumi/getting-started/c-sharp.md)
* [Go](/spacelift/vendors/pulumi/getting-started/golang.md)
* [JavaScript](/spacelift/vendors/pulumi/getting-started/javascript.md)
* [Python](/spacelift/vendors/pulumi/getting-started/python.md)

In case you're just getting started with Pulumi, we'd recommend you to start with JavaScript. Believe it or not, it's actually the most pleasant experience we had with Pulumi! Later you can also easily switch to languages which compile to JavaScript, like TypeScript or ClojureScript.

The high level concepts of Spacelift don't change when used with Pulumi. Below, we'll cover a few lower level details, which may be of interest.

### Run Execution

#### Initialization

Previously described in [Run Initializing](/spacelift/concepts/run.md#initializing), in Pulumi the initialization will run:

* `pulumi login` with your configured login URL
* `pulumi stack select --create --select` with your configured Pulumi stack name (the one you set in vendor-specific settings, not the Spacelift [Stack](/spacelift/concepts/stack.md) name)

It will then commence to run all pre-initialization hooks.

#### Planning

We run `pulumi preview --refresh --diff --show-replacement-steps` in order to show planned changes.

#### Applying

We run `pulumi up --refresh --diff --show-replacement-steps` in order to apply changes.

### Policies

Most policies don't change at all. The one that changes most is the plan policy. Instead of the terraform raw plan in the `terraform` field, you'll get a `pulumi` field with the raw Pulumi plan and the following schema:

```
{
  "pulumi": {
    "steps": [
      {
        "new": {
          "custom": "boolean",
          "id": "string",
          "inputs": "object - input properties",
          "outputs": "object - output properties",
          "parent": "string - parent resource of this resource",
          "provider": "string - provider this resource stems from",
          "type": "string - resource type",
          "urn": "string - urn of this resource"
        },
        "old": {
          "custom": "boolean",
          "id": "string",
          "inputs": "object - input properties",
          "outputs": "object - output properties",
          "parent": "string - parent resource of this resource",
          "provider": "string - provider this resource stems from",
          "type": "string - resource type",
          "urn": "string - urn of this resource"
        },
        "op": "string - same, refresh, create, update, delete, create-replacement or delete-replaced",
        "provider": "string - provider this resource stems from",
        "type": "string - resource type",
        "urn": "string - urn of this resource"
      }
    ]
  },
  "spacelift": {"...": "..."}
}
```

Pulumi secrets are detected and encoded as "\[secret]" instead of the actual value, that's why there's no other string sanitization going on with Pulumi plans.

### Modules

Spacelift module CI/CD isn't currently available for Pulumi.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://spacelift-io.gitbook.io/spacelift/vendors/pulumi.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
