Viewing docs for Multipass v0.3.2
published on Tuesday, Sep 15, 2026 by incsteps
published on Tuesday, Sep 15, 2026 by incsteps
Multipass Provider
I want to use the Pulumi Multipass package (multipass) in my project.
## Provider details
- Package: multipass
- Version: v0.3.2
- Publisher: incsteps
- Source: pulumi
- Repository: https://github.com/incsteps/pulumi-provider-multipass
## Documentation
The Pulumi Cloud Registry API serves canonical, up-to-date docs for this package — including private packages and every published version. Send the "Accept: text/markdown" header for clean readable content, or "application/json" for structured data.
Start at the navigation tree, which cross-links to the readme, installation guide, and per-resource docs URL template:
- https://api.pulumi.com/api/registry/packages/pulumi/incsteps/multipass/versions/latest/nav
Returns a summary by default. The full tree can be hundreds of kB for large providers, so prefer targeted search: append "?q=<query>&depth=full" to filter by resource/function title or token (for example "?q=bucket&depth=full"). Only request the full nav without a query if you actually need to enumerate every resource.
Other endpoints:
- Overview and getting started: https://api.pulumi.com/api/registry/packages/pulumi/incsteps/multipass/versions/latest/readme
- Installation and configuration: https://api.pulumi.com/api/registry/packages/pulumi/incsteps/multipass/versions/latest/installation
- Per-resource/function docs: https://api.pulumi.com/api/registry/packages/pulumi/incsteps/multipass/versions/latest/docs/{token}?lang={lang}
Replace {token} with the percent-encoded token from the nav response (for example aws:s3/bucket:Bucket).
Replace {lang} with typescript, python, go, csharp, java, yaml, or hcl.
Fetch the installation endpoint above for the correct setup steps — install instructions vary between native providers, bridged Terraform providers, and component packages.
Help me get started using this provider. Show me a complete Pulumi program that provisions a common resource, including all necessary configuration and imports.
Viewing docs for Multipass v0.3.2
published on Tuesday, Sep 15, 2026 by incsteps
published on Tuesday, Sep 15, 2026 by incsteps
The Pulumi Multipass provider enables declarative management of Canonical Multipass virtual machines using Pulumi.
Multipass is a tool to launch and manage Ubuntu virtual machines on macOS, Linux, and Windows. This provider turns Multipass VMs into first-class Pulumi resources, allowing you to describe multi-node local topologies in code, track changes, and destroy environments without relying on cloud infrastructure.
Installation
The Multipass provider is distributed as GitHub releases. Install the resource plugin using the Pulumi CLI:
pulumi plugin install resource multipass v0.3.1 --server github://api.github.com/incsteps/pulumi-provider-multipass
Once the provider will be included as part of the Pulumi Community Registry, this step will be unnecessary.
Then add the SDK to your project:
pulumi package add multipass
Usage
import * as multipass from "@incsteps/pulumi-multipass";
const vm = new multipass.resources.Instance("dev", {
name: "dev",
image: "24.04",
cpus: 2,
memory: "4G",
disk: "20G",
});
export const ip = vm.ipv4;
Viewing docs for Multipass v0.3.2
published on Tuesday, Sep 15, 2026 by incsteps
published on Tuesday, Sep 15, 2026 by incsteps