This repository is a boilerplate showing how to create a native Pulumi provider.
This repository is part of the guide for authoring and publishing a Pulumi Package.
Learn about the concepts behind Pulumi Packages.
Follow this link to see an architecture diagram for Pulumi.
A Pulumi Resource Provider:
- is a gRPC server which allows for the Pulumi engine to create resources in a specific cloud
- holds the lifecycle logic for these cloud resources
- holds a pulumi JSON schema that describes the provider
- provides language-specific SDKs so resources can be created in whichever language you prefer
When we speak of a "native" provider, we mean that all implementation is native to Pulumi, as opposed to Terraform based providers.
The following instructions assume that the provider is written for the Pulumi organisation. In the future, we will add instruction for providers published and maintained by the Pulumi community, referred to as "third-party" providers.
This boilerplate creates a working Pulumi-owned provider named xyz
.
It implements a random number generator that you can build and test out for yourself and then replace the Random code with code specific to your provider.
Ensure the following tools are installed and present in your $PATH
:
pulumictl
- Go 1.17 or 1.latest
- NodeJS 14.x. We recommend using nvm to manage NodeJS installations.
- Yarn
- TypeScript
- Python (called as
python3
). For recent versions of MacOS, the system-installed version is fine. - .NET
Pulumi offers this repository as a GitHub template repository for convenience. From this repository:
- Click "Use this template".
- Set the following options:
- Owner: pulumi
- Repository name: pulumi-xyz-native (replace "xyz" with the name of your provider)
- Description: Pulumi provider for xyz
- Repository type: Public
- Clone the generated repository.
From the templated repository:
- Search-replace
xyz
with the name of your desired provider.
$ make build install
This will:
- Create the SDK codegen binary and place it in a
./bin
folder (gitignored) - Create the provider binary and place it in the
./bin
folder (gitignored) - Generate the dotnet, Go, Node, and Python SDKs and place them in the
./sdk
folder - Install the provider on your machine.
$ cd examples/simple
$ yarn link @pulumi/xyz
$ yarn install
$ pulumi stack init test
$ pulumi up
Now that you have completed all of the above steps, you have a working provider that generates a random string for you.
You now have:
- A
provider/
folder containing the building and implementation logiccmd/
pulumi-gen-xyz/
- generates language SDKs from the schemapulumi-resource-xyz/
- holds the package schema, injects the package version, and starts the gRPC server
pkg
provider
- holds the gRPC methods (and for now, the sample implementation logic) required by the Pulumi engineversion
- semver package to be consumed by build processes
deployment-templates
- a set of files to help you around deployment and publicationsdk
- holds the generated code libraries created bypulumi-gen-xyz/main.go
examples
a folder of Pulumi programs to try locally and/or use in CI.- A
Makefile
and thisREADME
.
The JSON schema file is used by pulumi-gen-xyz
to create language-specific SDKs.
It is, therefore, a central requirement for any resource provider.
Provider schemas can be handwritten, or alternatively machine-generated by combining API specification with pulumi-specific logic.
This repository provides the xyz example schema to get you started.
The AWS Native Provider schema provides a much larger example.
Refer to the package schema documentation for additional details when writing the schema.
Once you have a schema that describes all the resources and metadata for your provider, you will need to implement the desired gRPC methods.
You will find a mostly blank implementation of these in pkg/provider/provider.go
.
Note that these methods do not link 1:1 to the Pulumi CLI commands.
The struct and creation of the provider are implemented already:
// provider/pkg/provider.go
type xyzProvider struct {
host *provider.HostClient
name string
version string
schema []byte
}
func makeProvider(host *provider.HostClient, name, version string, pulumiSchema []byte) (pulumirpc.ResourceProviderServer, error) {
// Return the new provider
return &xyzProvider{
host: host,
name: name,
version: version,
schema: pulumiSchema,
}, nil
}
You need to provide the following methods:
- Check - validates resource Inputs
- Diff - calculates the differences between the actual and the desired state of a resource
- Create - creates a new instance of a resource from an Input
- Update - updates a resource in-place (i.e. without deleting/recreating)
- Read - reads current inputs and state for a resource
- Delete - deletes a resource and its corresponding state
Resource lifecycle methods are documented here.
The following methods are necessary for every provider and are already implemented:
- GetPluginInfo - returns generic information about this plugin, like its version
- GetSchema - returns the Pulumi schema to the provider
The resource provider service includes a few more gRPC methods that you may need to implement and can read more about.
Create an example program using the resources defined in your provider, and place it in the examples/
folder.
You can now repeat the steps for build, install, and test.
Please follow this guide to add documentation to your provider.
- Follow the instructions laid out in the deployment templates.
Other resources for learning about the Pulumi resource model: