Civo

The Civo provider for Pulumi can be used to provision any of the cloud resources available in Civo. The Civo provider must be configured with credentials to deploy and update resources in Civo.

See the full API documentation for complete details of the available Civo provider APIs.

Setup

The Civo provider supports several options for providing access to Civo credentials. See the Civo setup page for details.

Example

const civo = require("@pulumi/civo")

const network = new civo.Network("demo", {
    label: "demo-network"
});
import * as civo from "@pulumi/civo";

const network = new civo.Network("demo", {
    label: "demo-network-typescript"
});

import pulumi_civo as civo

network = civo.Network("demo",
  label="demo-network")
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi-civo/sdk/go/civo"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		network, err := civo.NewNetwork(ctx, "demo", &civo.NetworkArgs{
			Label: pulumi.String("demo-network"),
		})
		if err != nil {
			return err
		}

		return nil
	})
}

using System.Collections.Generic;
using System.Threading.Tasks;
using Pulumi;
using Pulumi.Civo;

class Program
{
    static Task Main() =>
        Deployment.Run(() => {
            var network = new Network("demo", new NetworkArgs
            {
                Label = "demo-network",
            });
        });
}

Libraries

The following packages are available in packager managers:

The Civo provider is open source and available in the pulumi/pulumi-civo repo.