1. Packages
  2. CloudAMQP Provider
  3. API Docs
  4. RabbitConfiguration
CloudAMQP v3.26.1 published on Thursday, Feb 12, 2026 by Pulumi
cloudamqp logo
CloudAMQP v3.26.1 published on Thursday, Feb 12, 2026 by Pulumi

    Import

    cloudamqp_rabbitmq_configuration can be imported using the CloudAMQP instance identifier. To

    retrieve the identifier, use [CloudAMQP API list intances].

    From Terraform v1.5.0, the import block can be used to import this resource:

    hcl

    import {

    to = cloudamqp_rabbitmq_configuration.config

    id = cloudamqp_instance.instance.id

    }

    Or use Terraform CLI:

    $ pulumi import cloudamqp:index/rabbitConfiguration:RabbitConfiguration config <instance_id>`
    

    Create RabbitConfiguration Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new RabbitConfiguration(name: string, args: RabbitConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def RabbitConfiguration(resource_name: str,
                            args: RabbitConfigurationArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def RabbitConfiguration(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            instance_id: Optional[int] = None,
                            message_interceptors_timestamp_overwrite: Optional[str] = None,
                            mqtt_vhost: Optional[str] = None,
                            consumer_timeout: Optional[int] = None,
                            heartbeat: Optional[int] = None,
                            cluster_partition_handling: Optional[str] = None,
                            log_exchange_level: Optional[str] = None,
                            max_message_size: Optional[int] = None,
                            channel_max: Optional[int] = None,
                            connection_max: Optional[int] = None,
                            mqtt_exchange: Optional[str] = None,
                            mqtt_ssl_cert_login: Optional[bool] = None,
                            queue_index_embed_msgs_below: Optional[int] = None,
                            sleep: Optional[int] = None,
                            ssl_cert_login_from: Optional[str] = None,
                            ssl_options_fail_if_no_peer_cert: Optional[bool] = None,
                            ssl_options_verify: Optional[str] = None,
                            timeout: Optional[int] = None,
                            vm_memory_high_watermark: Optional[float] = None)
    func NewRabbitConfiguration(ctx *Context, name string, args RabbitConfigurationArgs, opts ...ResourceOption) (*RabbitConfiguration, error)
    public RabbitConfiguration(string name, RabbitConfigurationArgs args, CustomResourceOptions? opts = null)
    public RabbitConfiguration(String name, RabbitConfigurationArgs args)
    public RabbitConfiguration(String name, RabbitConfigurationArgs args, CustomResourceOptions options)
    
    type: cloudamqp:RabbitConfiguration
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args RabbitConfigurationArgs
    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 RabbitConfigurationArgs
    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 RabbitConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RabbitConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RabbitConfigurationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var rabbitConfigurationResource = new CloudAmqp.RabbitConfiguration("rabbitConfigurationResource", new()
    {
        InstanceId = 0,
        MessageInterceptorsTimestampOverwrite = "string",
        MqttVhost = "string",
        ConsumerTimeout = 0,
        Heartbeat = 0,
        ClusterPartitionHandling = "string",
        LogExchangeLevel = "string",
        MaxMessageSize = 0,
        ChannelMax = 0,
        ConnectionMax = 0,
        MqttExchange = "string",
        MqttSslCertLogin = false,
        QueueIndexEmbedMsgsBelow = 0,
        Sleep = 0,
        SslCertLoginFrom = "string",
        SslOptionsFailIfNoPeerCert = false,
        SslOptionsVerify = "string",
        Timeout = 0,
        VmMemoryHighWatermark = 0,
    });
    
    example, err := cloudamqp.NewRabbitConfiguration(ctx, "rabbitConfigurationResource", &cloudamqp.RabbitConfigurationArgs{
    	InstanceId:                            pulumi.Int(0),
    	MessageInterceptorsTimestampOverwrite: pulumi.String("string"),
    	MqttVhost:                             pulumi.String("string"),
    	ConsumerTimeout:                       pulumi.Int(0),
    	Heartbeat:                             pulumi.Int(0),
    	ClusterPartitionHandling:              pulumi.String("string"),
    	LogExchangeLevel:                      pulumi.String("string"),
    	MaxMessageSize:                        pulumi.Int(0),
    	ChannelMax:                            pulumi.Int(0),
    	ConnectionMax:                         pulumi.Int(0),
    	MqttExchange:                          pulumi.String("string"),
    	MqttSslCertLogin:                      pulumi.Bool(false),
    	QueueIndexEmbedMsgsBelow:              pulumi.Int(0),
    	Sleep:                                 pulumi.Int(0),
    	SslCertLoginFrom:                      pulumi.String("string"),
    	SslOptionsFailIfNoPeerCert:            pulumi.Bool(false),
    	SslOptionsVerify:                      pulumi.String("string"),
    	Timeout:                               pulumi.Int(0),
    	VmMemoryHighWatermark:                 pulumi.Float64(0),
    })
    
    var rabbitConfigurationResource = new RabbitConfiguration("rabbitConfigurationResource", RabbitConfigurationArgs.builder()
        .instanceId(0)
        .messageInterceptorsTimestampOverwrite("string")
        .mqttVhost("string")
        .consumerTimeout(0)
        .heartbeat(0)
        .clusterPartitionHandling("string")
        .logExchangeLevel("string")
        .maxMessageSize(0)
        .channelMax(0)
        .connectionMax(0)
        .mqttExchange("string")
        .mqttSslCertLogin(false)
        .queueIndexEmbedMsgsBelow(0)
        .sleep(0)
        .sslCertLoginFrom("string")
        .sslOptionsFailIfNoPeerCert(false)
        .sslOptionsVerify("string")
        .timeout(0)
        .vmMemoryHighWatermark(0.0)
        .build());
    
    rabbit_configuration_resource = cloudamqp.RabbitConfiguration("rabbitConfigurationResource",
        instance_id=0,
        message_interceptors_timestamp_overwrite="string",
        mqtt_vhost="string",
        consumer_timeout=0,
        heartbeat=0,
        cluster_partition_handling="string",
        log_exchange_level="string",
        max_message_size=0,
        channel_max=0,
        connection_max=0,
        mqtt_exchange="string",
        mqtt_ssl_cert_login=False,
        queue_index_embed_msgs_below=0,
        sleep=0,
        ssl_cert_login_from="string",
        ssl_options_fail_if_no_peer_cert=False,
        ssl_options_verify="string",
        timeout=0,
        vm_memory_high_watermark=0)
    
    const rabbitConfigurationResource = new cloudamqp.RabbitConfiguration("rabbitConfigurationResource", {
        instanceId: 0,
        messageInterceptorsTimestampOverwrite: "string",
        mqttVhost: "string",
        consumerTimeout: 0,
        heartbeat: 0,
        clusterPartitionHandling: "string",
        logExchangeLevel: "string",
        maxMessageSize: 0,
        channelMax: 0,
        connectionMax: 0,
        mqttExchange: "string",
        mqttSslCertLogin: false,
        queueIndexEmbedMsgsBelow: 0,
        sleep: 0,
        sslCertLoginFrom: "string",
        sslOptionsFailIfNoPeerCert: false,
        sslOptionsVerify: "string",
        timeout: 0,
        vmMemoryHighWatermark: 0,
    });
    
    type: cloudamqp:RabbitConfiguration
    properties:
        channelMax: 0
        clusterPartitionHandling: string
        connectionMax: 0
        consumerTimeout: 0
        heartbeat: 0
        instanceId: 0
        logExchangeLevel: string
        maxMessageSize: 0
        messageInterceptorsTimestampOverwrite: string
        mqttExchange: string
        mqttSslCertLogin: false
        mqttVhost: string
        queueIndexEmbedMsgsBelow: 0
        sleep: 0
        sslCertLoginFrom: string
        sslOptionsFailIfNoPeerCert: false
        sslOptionsVerify: string
        timeout: 0
        vmMemoryHighWatermark: 0
    

    RabbitConfiguration Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The RabbitConfiguration resource accepts the following input properties:

    InstanceId int
    The CloudAMQP instance ID.
    ChannelMax int
    Set the maximum permissible number of channels per connection.
    ClusterPartitionHandling string
    Set how the cluster should handle network partition.
    ConnectionMax int
    Set the maximum permissible number of connection.
    ConsumerTimeout int
    A consumer that has received a message and does not acknowledge that message within the timeout in milliseconds
    Heartbeat int
    Set the server AMQP 0-9-1 heartbeat timeout in seconds.
    LogExchangeLevel string
    Log level for the logger used for log integrations and the CloudAMQP Console log view.
    MaxMessageSize int
    The largest allowed message payload size in bytes.
    MessageInterceptorsTimestampOverwrite string
    Sets a timestamp header on incoming messages. enabled_with_overwrite will overwrite any existing timestamps in the header.
    MqttExchange string
    The exchange option determines which exchange messages from MQTT clients are published to.
    MqttSslCertLogin bool
    Enable SSL certificate-based authentication for MQTT connections.
    MqttVhost string
    Virtual host for MQTT connections. Default set to newly created vhost, same as cloudamqp_instance.instance.vhost.
    QueueIndexEmbedMsgsBelow int
    Size in bytes below which to embed messages in the queue index. 0 will turn off payload embedding in the queue index.
    Sleep int
    Configurable sleep time in seconds between retries for RabbitMQ configuration. Default set to 60 seconds.
    SslCertLoginFrom string
    Determines which certificate field to use as the username for TLS-based authentication.
    SslOptionsFailIfNoPeerCert bool
    When set to true, TLS connections will fail if the client does not provide a certificate.
    SslOptionsVerify string

    Controls peer certificate verification for TLS connections.

    Configure sleep and timeout for API requests retries

    Timeout int
    Configurable timeout time in seconds for RabbitMQ configuration. Default set to 3600 seconds.
    VmMemoryHighWatermark double
    When the server will enter memory based flow-control as relative to the maximum available memory.
    InstanceId int
    The CloudAMQP instance ID.
    ChannelMax int
    Set the maximum permissible number of channels per connection.
    ClusterPartitionHandling string
    Set how the cluster should handle network partition.
    ConnectionMax int
    Set the maximum permissible number of connection.
    ConsumerTimeout int
    A consumer that has received a message and does not acknowledge that message within the timeout in milliseconds
    Heartbeat int
    Set the server AMQP 0-9-1 heartbeat timeout in seconds.
    LogExchangeLevel string
    Log level for the logger used for log integrations and the CloudAMQP Console log view.
    MaxMessageSize int
    The largest allowed message payload size in bytes.
    MessageInterceptorsTimestampOverwrite string
    Sets a timestamp header on incoming messages. enabled_with_overwrite will overwrite any existing timestamps in the header.
    MqttExchange string
    The exchange option determines which exchange messages from MQTT clients are published to.
    MqttSslCertLogin bool
    Enable SSL certificate-based authentication for MQTT connections.
    MqttVhost string
    Virtual host for MQTT connections. Default set to newly created vhost, same as cloudamqp_instance.instance.vhost.
    QueueIndexEmbedMsgsBelow int
    Size in bytes below which to embed messages in the queue index. 0 will turn off payload embedding in the queue index.
    Sleep int
    Configurable sleep time in seconds between retries for RabbitMQ configuration. Default set to 60 seconds.
    SslCertLoginFrom string
    Determines which certificate field to use as the username for TLS-based authentication.
    SslOptionsFailIfNoPeerCert bool
    When set to true, TLS connections will fail if the client does not provide a certificate.
    SslOptionsVerify string

    Controls peer certificate verification for TLS connections.

    Configure sleep and timeout for API requests retries

    Timeout int
    Configurable timeout time in seconds for RabbitMQ configuration. Default set to 3600 seconds.
    VmMemoryHighWatermark float64
    When the server will enter memory based flow-control as relative to the maximum available memory.
    instanceId Integer
    The CloudAMQP instance ID.
    channelMax Integer
    Set the maximum permissible number of channels per connection.
    clusterPartitionHandling String
    Set how the cluster should handle network partition.
    connectionMax Integer
    Set the maximum permissible number of connection.
    consumerTimeout Integer
    A consumer that has received a message and does not acknowledge that message within the timeout in milliseconds
    heartbeat Integer
    Set the server AMQP 0-9-1 heartbeat timeout in seconds.
    logExchangeLevel String
    Log level for the logger used for log integrations and the CloudAMQP Console log view.
    maxMessageSize Integer
    The largest allowed message payload size in bytes.
    messageInterceptorsTimestampOverwrite String
    Sets a timestamp header on incoming messages. enabled_with_overwrite will overwrite any existing timestamps in the header.
    mqttExchange String
    The exchange option determines which exchange messages from MQTT clients are published to.
    mqttSslCertLogin Boolean
    Enable SSL certificate-based authentication for MQTT connections.
    mqttVhost String
    Virtual host for MQTT connections. Default set to newly created vhost, same as cloudamqp_instance.instance.vhost.
    queueIndexEmbedMsgsBelow Integer
    Size in bytes below which to embed messages in the queue index. 0 will turn off payload embedding in the queue index.
    sleep Integer
    Configurable sleep time in seconds between retries for RabbitMQ configuration. Default set to 60 seconds.
    sslCertLoginFrom String
    Determines which certificate field to use as the username for TLS-based authentication.
    sslOptionsFailIfNoPeerCert Boolean
    When set to true, TLS connections will fail if the client does not provide a certificate.
    sslOptionsVerify String

    Controls peer certificate verification for TLS connections.

    Configure sleep and timeout for API requests retries

    timeout Integer
    Configurable timeout time in seconds for RabbitMQ configuration. Default set to 3600 seconds.
    vmMemoryHighWatermark Double
    When the server will enter memory based flow-control as relative to the maximum available memory.
    instanceId number
    The CloudAMQP instance ID.
    channelMax number
    Set the maximum permissible number of channels per connection.
    clusterPartitionHandling string
    Set how the cluster should handle network partition.
    connectionMax number
    Set the maximum permissible number of connection.
    consumerTimeout number
    A consumer that has received a message and does not acknowledge that message within the timeout in milliseconds
    heartbeat number
    Set the server AMQP 0-9-1 heartbeat timeout in seconds.
    logExchangeLevel string
    Log level for the logger used for log integrations and the CloudAMQP Console log view.
    maxMessageSize number
    The largest allowed message payload size in bytes.
    messageInterceptorsTimestampOverwrite string
    Sets a timestamp header on incoming messages. enabled_with_overwrite will overwrite any existing timestamps in the header.
    mqttExchange string
    The exchange option determines which exchange messages from MQTT clients are published to.
    mqttSslCertLogin boolean
    Enable SSL certificate-based authentication for MQTT connections.
    mqttVhost string
    Virtual host for MQTT connections. Default set to newly created vhost, same as cloudamqp_instance.instance.vhost.
    queueIndexEmbedMsgsBelow number
    Size in bytes below which to embed messages in the queue index. 0 will turn off payload embedding in the queue index.
    sleep number
    Configurable sleep time in seconds between retries for RabbitMQ configuration. Default set to 60 seconds.
    sslCertLoginFrom string
    Determines which certificate field to use as the username for TLS-based authentication.
    sslOptionsFailIfNoPeerCert boolean
    When set to true, TLS connections will fail if the client does not provide a certificate.
    sslOptionsVerify string

    Controls peer certificate verification for TLS connections.

    Configure sleep and timeout for API requests retries

    timeout number
    Configurable timeout time in seconds for RabbitMQ configuration. Default set to 3600 seconds.
    vmMemoryHighWatermark number
    When the server will enter memory based flow-control as relative to the maximum available memory.
    instance_id int
    The CloudAMQP instance ID.
    channel_max int
    Set the maximum permissible number of channels per connection.
    cluster_partition_handling str
    Set how the cluster should handle network partition.
    connection_max int
    Set the maximum permissible number of connection.
    consumer_timeout int
    A consumer that has received a message and does not acknowledge that message within the timeout in milliseconds
    heartbeat int
    Set the server AMQP 0-9-1 heartbeat timeout in seconds.
    log_exchange_level str
    Log level for the logger used for log integrations and the CloudAMQP Console log view.
    max_message_size int
    The largest allowed message payload size in bytes.
    message_interceptors_timestamp_overwrite str
    Sets a timestamp header on incoming messages. enabled_with_overwrite will overwrite any existing timestamps in the header.
    mqtt_exchange str
    The exchange option determines which exchange messages from MQTT clients are published to.
    mqtt_ssl_cert_login bool
    Enable SSL certificate-based authentication for MQTT connections.
    mqtt_vhost str
    Virtual host for MQTT connections. Default set to newly created vhost, same as cloudamqp_instance.instance.vhost.
    queue_index_embed_msgs_below int
    Size in bytes below which to embed messages in the queue index. 0 will turn off payload embedding in the queue index.
    sleep int
    Configurable sleep time in seconds between retries for RabbitMQ configuration. Default set to 60 seconds.
    ssl_cert_login_from str
    Determines which certificate field to use as the username for TLS-based authentication.
    ssl_options_fail_if_no_peer_cert bool
    When set to true, TLS connections will fail if the client does not provide a certificate.
    ssl_options_verify str

    Controls peer certificate verification for TLS connections.

    Configure sleep and timeout for API requests retries

    timeout int
    Configurable timeout time in seconds for RabbitMQ configuration. Default set to 3600 seconds.
    vm_memory_high_watermark float
    When the server will enter memory based flow-control as relative to the maximum available memory.
    instanceId Number
    The CloudAMQP instance ID.
    channelMax Number
    Set the maximum permissible number of channels per connection.
    clusterPartitionHandling String
    Set how the cluster should handle network partition.
    connectionMax Number
    Set the maximum permissible number of connection.
    consumerTimeout Number
    A consumer that has received a message and does not acknowledge that message within the timeout in milliseconds
    heartbeat Number
    Set the server AMQP 0-9-1 heartbeat timeout in seconds.
    logExchangeLevel String
    Log level for the logger used for log integrations and the CloudAMQP Console log view.
    maxMessageSize Number
    The largest allowed message payload size in bytes.
    messageInterceptorsTimestampOverwrite String
    Sets a timestamp header on incoming messages. enabled_with_overwrite will overwrite any existing timestamps in the header.
    mqttExchange String
    The exchange option determines which exchange messages from MQTT clients are published to.
    mqttSslCertLogin Boolean
    Enable SSL certificate-based authentication for MQTT connections.
    mqttVhost String
    Virtual host for MQTT connections. Default set to newly created vhost, same as cloudamqp_instance.instance.vhost.
    queueIndexEmbedMsgsBelow Number
    Size in bytes below which to embed messages in the queue index. 0 will turn off payload embedding in the queue index.
    sleep Number
    Configurable sleep time in seconds between retries for RabbitMQ configuration. Default set to 60 seconds.
    sslCertLoginFrom String
    Determines which certificate field to use as the username for TLS-based authentication.
    sslOptionsFailIfNoPeerCert Boolean
    When set to true, TLS connections will fail if the client does not provide a certificate.
    sslOptionsVerify String

    Controls peer certificate verification for TLS connections.

    Configure sleep and timeout for API requests retries

    timeout Number
    Configurable timeout time in seconds for RabbitMQ configuration. Default set to 3600 seconds.
    vmMemoryHighWatermark Number
    When the server will enter memory based flow-control as relative to the maximum available memory.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RabbitConfiguration 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 RabbitConfiguration Resource

    Get an existing RabbitConfiguration 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?: RabbitConfigurationState, opts?: CustomResourceOptions): RabbitConfiguration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            channel_max: Optional[int] = None,
            cluster_partition_handling: Optional[str] = None,
            connection_max: Optional[int] = None,
            consumer_timeout: Optional[int] = None,
            heartbeat: Optional[int] = None,
            instance_id: Optional[int] = None,
            log_exchange_level: Optional[str] = None,
            max_message_size: Optional[int] = None,
            message_interceptors_timestamp_overwrite: Optional[str] = None,
            mqtt_exchange: Optional[str] = None,
            mqtt_ssl_cert_login: Optional[bool] = None,
            mqtt_vhost: Optional[str] = None,
            queue_index_embed_msgs_below: Optional[int] = None,
            sleep: Optional[int] = None,
            ssl_cert_login_from: Optional[str] = None,
            ssl_options_fail_if_no_peer_cert: Optional[bool] = None,
            ssl_options_verify: Optional[str] = None,
            timeout: Optional[int] = None,
            vm_memory_high_watermark: Optional[float] = None) -> RabbitConfiguration
    func GetRabbitConfiguration(ctx *Context, name string, id IDInput, state *RabbitConfigurationState, opts ...ResourceOption) (*RabbitConfiguration, error)
    public static RabbitConfiguration Get(string name, Input<string> id, RabbitConfigurationState? state, CustomResourceOptions? opts = null)
    public static RabbitConfiguration get(String name, Output<String> id, RabbitConfigurationState state, CustomResourceOptions options)
    resources:  _:    type: cloudamqp:RabbitConfiguration    get:      id: ${id}
    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:
    ChannelMax int
    Set the maximum permissible number of channels per connection.
    ClusterPartitionHandling string
    Set how the cluster should handle network partition.
    ConnectionMax int
    Set the maximum permissible number of connection.
    ConsumerTimeout int
    A consumer that has received a message and does not acknowledge that message within the timeout in milliseconds
    Heartbeat int
    Set the server AMQP 0-9-1 heartbeat timeout in seconds.
    InstanceId int
    The CloudAMQP instance ID.
    LogExchangeLevel string
    Log level for the logger used for log integrations and the CloudAMQP Console log view.
    MaxMessageSize int
    The largest allowed message payload size in bytes.
    MessageInterceptorsTimestampOverwrite string
    Sets a timestamp header on incoming messages. enabled_with_overwrite will overwrite any existing timestamps in the header.
    MqttExchange string
    The exchange option determines which exchange messages from MQTT clients are published to.
    MqttSslCertLogin bool
    Enable SSL certificate-based authentication for MQTT connections.
    MqttVhost string
    Virtual host for MQTT connections. Default set to newly created vhost, same as cloudamqp_instance.instance.vhost.
    QueueIndexEmbedMsgsBelow int
    Size in bytes below which to embed messages in the queue index. 0 will turn off payload embedding in the queue index.
    Sleep int
    Configurable sleep time in seconds between retries for RabbitMQ configuration. Default set to 60 seconds.
    SslCertLoginFrom string
    Determines which certificate field to use as the username for TLS-based authentication.
    SslOptionsFailIfNoPeerCert bool
    When set to true, TLS connections will fail if the client does not provide a certificate.
    SslOptionsVerify string

    Controls peer certificate verification for TLS connections.

    Configure sleep and timeout for API requests retries

    Timeout int
    Configurable timeout time in seconds for RabbitMQ configuration. Default set to 3600 seconds.
    VmMemoryHighWatermark double
    When the server will enter memory based flow-control as relative to the maximum available memory.
    ChannelMax int
    Set the maximum permissible number of channels per connection.
    ClusterPartitionHandling string
    Set how the cluster should handle network partition.
    ConnectionMax int
    Set the maximum permissible number of connection.
    ConsumerTimeout int
    A consumer that has received a message and does not acknowledge that message within the timeout in milliseconds
    Heartbeat int
    Set the server AMQP 0-9-1 heartbeat timeout in seconds.
    InstanceId int
    The CloudAMQP instance ID.
    LogExchangeLevel string
    Log level for the logger used for log integrations and the CloudAMQP Console log view.
    MaxMessageSize int
    The largest allowed message payload size in bytes.
    MessageInterceptorsTimestampOverwrite string
    Sets a timestamp header on incoming messages. enabled_with_overwrite will overwrite any existing timestamps in the header.
    MqttExchange string
    The exchange option determines which exchange messages from MQTT clients are published to.
    MqttSslCertLogin bool
    Enable SSL certificate-based authentication for MQTT connections.
    MqttVhost string
    Virtual host for MQTT connections. Default set to newly created vhost, same as cloudamqp_instance.instance.vhost.
    QueueIndexEmbedMsgsBelow int
    Size in bytes below which to embed messages in the queue index. 0 will turn off payload embedding in the queue index.
    Sleep int
    Configurable sleep time in seconds between retries for RabbitMQ configuration. Default set to 60 seconds.
    SslCertLoginFrom string
    Determines which certificate field to use as the username for TLS-based authentication.
    SslOptionsFailIfNoPeerCert bool
    When set to true, TLS connections will fail if the client does not provide a certificate.
    SslOptionsVerify string

    Controls peer certificate verification for TLS connections.

    Configure sleep and timeout for API requests retries

    Timeout int
    Configurable timeout time in seconds for RabbitMQ configuration. Default set to 3600 seconds.
    VmMemoryHighWatermark float64
    When the server will enter memory based flow-control as relative to the maximum available memory.
    channelMax Integer
    Set the maximum permissible number of channels per connection.
    clusterPartitionHandling String
    Set how the cluster should handle network partition.
    connectionMax Integer
    Set the maximum permissible number of connection.
    consumerTimeout Integer
    A consumer that has received a message and does not acknowledge that message within the timeout in milliseconds
    heartbeat Integer
    Set the server AMQP 0-9-1 heartbeat timeout in seconds.
    instanceId Integer
    The CloudAMQP instance ID.
    logExchangeLevel String
    Log level for the logger used for log integrations and the CloudAMQP Console log view.
    maxMessageSize Integer
    The largest allowed message payload size in bytes.
    messageInterceptorsTimestampOverwrite String
    Sets a timestamp header on incoming messages. enabled_with_overwrite will overwrite any existing timestamps in the header.
    mqttExchange String
    The exchange option determines which exchange messages from MQTT clients are published to.
    mqttSslCertLogin Boolean
    Enable SSL certificate-based authentication for MQTT connections.
    mqttVhost String
    Virtual host for MQTT connections. Default set to newly created vhost, same as cloudamqp_instance.instance.vhost.
    queueIndexEmbedMsgsBelow Integer
    Size in bytes below which to embed messages in the queue index. 0 will turn off payload embedding in the queue index.
    sleep Integer
    Configurable sleep time in seconds between retries for RabbitMQ configuration. Default set to 60 seconds.
    sslCertLoginFrom String
    Determines which certificate field to use as the username for TLS-based authentication.
    sslOptionsFailIfNoPeerCert Boolean
    When set to true, TLS connections will fail if the client does not provide a certificate.
    sslOptionsVerify String

    Controls peer certificate verification for TLS connections.

    Configure sleep and timeout for API requests retries

    timeout Integer
    Configurable timeout time in seconds for RabbitMQ configuration. Default set to 3600 seconds.
    vmMemoryHighWatermark Double
    When the server will enter memory based flow-control as relative to the maximum available memory.
    channelMax number
    Set the maximum permissible number of channels per connection.
    clusterPartitionHandling string
    Set how the cluster should handle network partition.
    connectionMax number
    Set the maximum permissible number of connection.
    consumerTimeout number
    A consumer that has received a message and does not acknowledge that message within the timeout in milliseconds
    heartbeat number
    Set the server AMQP 0-9-1 heartbeat timeout in seconds.
    instanceId number
    The CloudAMQP instance ID.
    logExchangeLevel string
    Log level for the logger used for log integrations and the CloudAMQP Console log view.
    maxMessageSize number
    The largest allowed message payload size in bytes.
    messageInterceptorsTimestampOverwrite string
    Sets a timestamp header on incoming messages. enabled_with_overwrite will overwrite any existing timestamps in the header.
    mqttExchange string
    The exchange option determines which exchange messages from MQTT clients are published to.
    mqttSslCertLogin boolean
    Enable SSL certificate-based authentication for MQTT connections.
    mqttVhost string
    Virtual host for MQTT connections. Default set to newly created vhost, same as cloudamqp_instance.instance.vhost.
    queueIndexEmbedMsgsBelow number
    Size in bytes below which to embed messages in the queue index. 0 will turn off payload embedding in the queue index.
    sleep number
    Configurable sleep time in seconds between retries for RabbitMQ configuration. Default set to 60 seconds.
    sslCertLoginFrom string
    Determines which certificate field to use as the username for TLS-based authentication.
    sslOptionsFailIfNoPeerCert boolean
    When set to true, TLS connections will fail if the client does not provide a certificate.
    sslOptionsVerify string

    Controls peer certificate verification for TLS connections.

    Configure sleep and timeout for API requests retries

    timeout number
    Configurable timeout time in seconds for RabbitMQ configuration. Default set to 3600 seconds.
    vmMemoryHighWatermark number
    When the server will enter memory based flow-control as relative to the maximum available memory.
    channel_max int
    Set the maximum permissible number of channels per connection.
    cluster_partition_handling str
    Set how the cluster should handle network partition.
    connection_max int
    Set the maximum permissible number of connection.
    consumer_timeout int
    A consumer that has received a message and does not acknowledge that message within the timeout in milliseconds
    heartbeat int
    Set the server AMQP 0-9-1 heartbeat timeout in seconds.
    instance_id int
    The CloudAMQP instance ID.
    log_exchange_level str
    Log level for the logger used for log integrations and the CloudAMQP Console log view.
    max_message_size int
    The largest allowed message payload size in bytes.
    message_interceptors_timestamp_overwrite str
    Sets a timestamp header on incoming messages. enabled_with_overwrite will overwrite any existing timestamps in the header.
    mqtt_exchange str
    The exchange option determines which exchange messages from MQTT clients are published to.
    mqtt_ssl_cert_login bool
    Enable SSL certificate-based authentication for MQTT connections.
    mqtt_vhost str
    Virtual host for MQTT connections. Default set to newly created vhost, same as cloudamqp_instance.instance.vhost.
    queue_index_embed_msgs_below int
    Size in bytes below which to embed messages in the queue index. 0 will turn off payload embedding in the queue index.
    sleep int
    Configurable sleep time in seconds between retries for RabbitMQ configuration. Default set to 60 seconds.
    ssl_cert_login_from str
    Determines which certificate field to use as the username for TLS-based authentication.
    ssl_options_fail_if_no_peer_cert bool
    When set to true, TLS connections will fail if the client does not provide a certificate.
    ssl_options_verify str

    Controls peer certificate verification for TLS connections.

    Configure sleep and timeout for API requests retries

    timeout int
    Configurable timeout time in seconds for RabbitMQ configuration. Default set to 3600 seconds.
    vm_memory_high_watermark float
    When the server will enter memory based flow-control as relative to the maximum available memory.
    channelMax Number
    Set the maximum permissible number of channels per connection.
    clusterPartitionHandling String
    Set how the cluster should handle network partition.
    connectionMax Number
    Set the maximum permissible number of connection.
    consumerTimeout Number
    A consumer that has received a message and does not acknowledge that message within the timeout in milliseconds
    heartbeat Number
    Set the server AMQP 0-9-1 heartbeat timeout in seconds.
    instanceId Number
    The CloudAMQP instance ID.
    logExchangeLevel String
    Log level for the logger used for log integrations and the CloudAMQP Console log view.
    maxMessageSize Number
    The largest allowed message payload size in bytes.
    messageInterceptorsTimestampOverwrite String
    Sets a timestamp header on incoming messages. enabled_with_overwrite will overwrite any existing timestamps in the header.
    mqttExchange String
    The exchange option determines which exchange messages from MQTT clients are published to.
    mqttSslCertLogin Boolean
    Enable SSL certificate-based authentication for MQTT connections.
    mqttVhost String
    Virtual host for MQTT connections. Default set to newly created vhost, same as cloudamqp_instance.instance.vhost.
    queueIndexEmbedMsgsBelow Number
    Size in bytes below which to embed messages in the queue index. 0 will turn off payload embedding in the queue index.
    sleep Number
    Configurable sleep time in seconds between retries for RabbitMQ configuration. Default set to 60 seconds.
    sslCertLoginFrom String
    Determines which certificate field to use as the username for TLS-based authentication.
    sslOptionsFailIfNoPeerCert Boolean
    When set to true, TLS connections will fail if the client does not provide a certificate.
    sslOptionsVerify String

    Controls peer certificate verification for TLS connections.

    Configure sleep and timeout for API requests retries

    timeout Number
    Configurable timeout time in seconds for RabbitMQ configuration. Default set to 3600 seconds.
    vmMemoryHighWatermark Number
    When the server will enter memory based flow-control as relative to the maximum available memory.

    Package Details

    Repository
    CloudAMQP pulumi/pulumi-cloudamqp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the cloudamqp Terraform Provider.
    cloudamqp logo
    CloudAMQP v3.26.1 published on Thursday, Feb 12, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate