cloudamqp logo
CloudAMQP v3.12.1, Mar 15 23

cloudamqp.CustomDomain

This resource allows you to configure and manage your custom domain for the CloudAMQP instance.

Adding a custom domain to your instance will generate a TLS certificate from [Let’s Encrypt], for the given hostname, and install it on all servers in your cluster. The certificate will be automatically renewed going forward.

WARNING: Please note that when creating, changing or deleting the custom domain, the listeners on your servers will be restarted in order to apply the changes. This will close your current connections.

Your custom domain name needs to point to your CloudAMQP hostname, preferably using a CNAME DNS record.

Only available for dedicated subscription plans.

Depedency

This resource depends on CloudAMQP instance identifier, cloudamqp_instance.instance.id.

Example Usage

using System.Collections.Generic;
using Pulumi;
using CloudAmqp = Pulumi.CloudAmqp;

return await Deployment.RunAsync(() => 
{
    var settings = new CloudAmqp.CustomDomain("settings", new()
    {
        InstanceId = cloudamqp_instance.Instance.Id,
        Hostname = "myname.mydomain",
    });

});
package main

import (
	"github.com/pulumi/pulumi-cloudamqp/sdk/v3/go/cloudamqp"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cloudamqp.NewCustomDomain(ctx, "settings", &cloudamqp.CustomDomainArgs{
			InstanceId: pulumi.Any(cloudamqp_instance.Instance.Id),
			Hostname:   pulumi.String("myname.mydomain"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudamqp.CustomDomain;
import com.pulumi.cloudamqp.CustomDomainArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var settings = new CustomDomain("settings", CustomDomainArgs.builder()        
            .instanceId(cloudamqp_instance.instance().id())
            .hostname("myname.mydomain")
            .build());

    }
}
import pulumi
import pulumi_cloudamqp as cloudamqp

settings = cloudamqp.CustomDomain("settings",
    instance_id=cloudamqp_instance["instance"]["id"],
    hostname="myname.mydomain")
import * as pulumi from "@pulumi/pulumi";
import * as cloudamqp from "@pulumi/cloudamqp";

const settings = new cloudamqp.CustomDomain("settings", {
    instanceId: cloudamqp_instance.instance.id,
    hostname: "myname.mydomain",
});
resources:
  settings:
    type: cloudamqp:CustomDomain
    properties:
      instanceId: ${cloudamqp_instance.instance.id}
      hostname: myname.mydomain

Create CustomDomain Resource

new CustomDomain(name: string, args: CustomDomainArgs, opts?: CustomResourceOptions);
@overload
def CustomDomain(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 hostname: Optional[str] = None,
                 instance_id: Optional[int] = None)
@overload
def CustomDomain(resource_name: str,
                 args: CustomDomainArgs,
                 opts: Optional[ResourceOptions] = None)
func NewCustomDomain(ctx *Context, name string, args CustomDomainArgs, opts ...ResourceOption) (*CustomDomain, error)
public CustomDomain(string name, CustomDomainArgs args, CustomResourceOptions? opts = null)
public CustomDomain(String name, CustomDomainArgs args)
public CustomDomain(String name, CustomDomainArgs args, CustomResourceOptions options)
type: cloudamqp:CustomDomain
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args CustomDomainArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
args CustomDomainArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args CustomDomainArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args CustomDomainArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args CustomDomainArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

CustomDomain Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The CustomDomain resource accepts the following input properties:

Hostname string

Your custom domain name.

InstanceId int

The CloudAMQP instance ID.

Hostname string

Your custom domain name.

InstanceId int

The CloudAMQP instance ID.

hostname String

Your custom domain name.

instanceId Integer

The CloudAMQP instance ID.

hostname string

Your custom domain name.

instanceId number

The CloudAMQP instance ID.

hostname str

Your custom domain name.

instance_id int

The CloudAMQP instance ID.

hostname String

Your custom domain name.

instanceId Number

The CloudAMQP instance ID.

Outputs

All input properties are implicitly available as output properties. Additionally, the CustomDomain resource produces the following output properties:

Id string

The provider-assigned unique ID for this managed resource.

Id string

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

id string

The provider-assigned unique ID for this managed resource.

id str

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

Look up Existing CustomDomain Resource

Get an existing CustomDomain resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: CustomDomainState, opts?: CustomResourceOptions): CustomDomain
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        hostname: Optional[str] = None,
        instance_id: Optional[int] = None) -> CustomDomain
func GetCustomDomain(ctx *Context, name string, id IDInput, state *CustomDomainState, opts ...ResourceOption) (*CustomDomain, error)
public static CustomDomain Get(string name, Input<string> id, CustomDomainState? state, CustomResourceOptions? opts = null)
public static CustomDomain get(String name, Output<String> id, CustomDomainState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Hostname string

Your custom domain name.

InstanceId int

The CloudAMQP instance ID.

Hostname string

Your custom domain name.

InstanceId int

The CloudAMQP instance ID.

hostname String

Your custom domain name.

instanceId Integer

The CloudAMQP instance ID.

hostname string

Your custom domain name.

instanceId number

The CloudAMQP instance ID.

hostname str

Your custom domain name.

instance_id int

The CloudAMQP instance ID.

hostname String

Your custom domain name.

instanceId Number

The CloudAMQP instance ID.

Import

cloudamqp_custom_domain can be imported using CloudAMQP instance identifier.

 $ pulumi import cloudamqp:index/customDomain:CustomDomain settings <instance_id>`

[Let’s Encrypt]https://letsencrypt.org/

Package Details

Repository
CloudAMQP pulumi/pulumi-cloudamqp
License
Apache-2.0
Notes

This Pulumi package is based on the cloudamqp Terraform Provider.