RabbitMQ is an open-source message-broker software that implements the Advanced Message Queuing Protocol (AMQP)
resource "apono_integration" "rabbitmq-integration" {
name = "RabbitMQ"
type = "rabbitmq"
connector_id = "apono-connector-id"
connected_resource_types = ["rabbitmq-cluster-management"]
metadata =
resource "apono_resource_integration" "rabbitmq-integration" {
name = "RabbitMQ"
type = "rabbitmq"
connector_id = "apono-connector-id"
connected_resource_types = ["rabbitmq-cluster-management"]
integration_config =
type rabbitmq
connected_resource_types List of resource types to sync.
url (Required | String) Url
{
"rabbitmq-integration": {
"name": "RabbitMQ",
"type": "rabbitmq",
"connector_id": "apono-connector-id",
"connected_resource_types": [
"rabbitmq-cluster-management"
],
"integration_config": {
"url": "<Url>",
},
"secret_store_config": {
"name": "name_template_value",
"namespace": "namespace_template_value"
}
}
}