CloudAMQP
Pulumi Official

Package maintained by Pulumiv3.6.2 published on Wednesday, Apr 6, 2022 by Pulumi
The CloudAMQP provider for Pulumi can be used to provision any of the cloud resources available in CloudAMQP. The CloudAMQP provider must be configured with credentials to deploy and update resources in CloudAMQP.
Example
const cloudamqp = require("@pulumi/cloudamqp")
const instance = new cloudamqp.Instance("demo-instance", {
plan: "lemur",
region: "amazon-web-services::us-west-2"
});
import * as cloudamqp from "@pulumi/cloudamqp";
const instance = new cloudamqp.Instance("demo-instance", {
plan: "lemur",
region: "amazon-web-services::us-west-2"
});
import pulumi_cloudamqp as cloudamqp
instance = cloudamqp.Instance("demo-instance",
plan="lemur",
region="amazon-web-services::us-west-2"
)
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
cloudamqp "github.com/pulumi/pulumi-cloudamqp/sdk/v3/go/cloudamqp"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
instance, err := cloudamqp.NewInstance(ctx, "demo-instance", &cloudamqp.InstanceArgs{
Plan: pulumi.String("lemur"),
Region: pulumi.String("amazon-web-services::us-west-2"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Threading.Tasks;
using Pulumi;
using Pulumi.Cloudamqp;
class Program
{
static Task Main() =>
Deployment.Run(() => {
var instance = new Instance("demo-instance", new InstanceArgs
{
Plan = "lemur",
Region = "amazon-web-services::us-west-2",
});
});
}