Wavefront
Pulumi Official

Package maintained by Pulumiv1.1.1 published on Wednesday, Mar 30, 2022 by Pulumi
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.
Example
const wavefront = require("@pulumi/wavefront")
const user = new wavefront.User("demo-ts", {
email: "test+ts@mycompany.io"
});
import * as wavefront from "@pulumi/wavefront";
const user = new wavefront.User("demo-ts", {
email: "test+ts@mycompany.io"
});
import pulumi_wavefront as wavefront
user = wavefront.User("demo-py",
email="test+py@mycompany.io")
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("test+go@mycompany.io"),
})
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 = "test+cs@mycompany.io",
});
});
}