Wavefront

The Wavefront provider for Pulumi can be used to provision any of the cloud resources available in Wavefront. The Wavefront provider must be configured with credentials to deploy and update resources in Wavefront.
See the full API documentation for complete details of the available Wavefront provider APIs.
Setup
The Wavefront provider supports several options for providing access to Wavefront credentials. See the Wavefront setup page for details.
Example
const wavefront = require("@pulumi/wavefront")
const user = new wavefront.User("demo-ts", {
email: "[email protected]"
});
import * as wavefront from "@pulumi/wavefront";
const user = new wavefront.User("demo-ts", {
email: "[email protected]"
});
import pulumi_wavefront as wavefront
user = wavefront.User("demo-py",
email="[email protected]")
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi-wavefront/sdk/go/wavefront"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
user, err := wavefront.NewUser(ctx, "demo", &wavefront.UserArgs{
Email: pulumi.String("[email protected]"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Threading.Tasks;
using Pulumi;
using Pulumi.Wavefront;
class Program
{
static Task Main() =>
Deployment.Run(() => {
var user = new User("demo", new UserArgs
{
Email = "[email protected]",
});
});
}
Libraries
The following packages are available in packager managers:
- JavaScript/TypeScript:
@pulumi/wavefront
- Python:
pulumi-wavefront
- Go:
github.com/pulumi/pulumi-wavefront/sdk/go/wavefront
- .NET:
Pulumi.Wavefront
The Wavefront provider is open source and available in the pulumi/pulumi-wavefront repo.