A Pulumi package for creating and managing RabbitMQ resources.


Keywords
pulumi, rabbitmq
License
Apache-2.0
Install
pip install pulumi-rabbitmq==1.1.0

Documentation

Actions Status Slack NPM version Python version NuGet version PkgGoDev License

RabbitMQ Resource Provider

The RabbitMQ resource provider for Pulumi lets you manage RabbitMQ resources in your cloud programs. To use this package, please install the Pulumi CLI first.

Installing

This package is available in many languages in the standard packaging formats.

Node.js (Java/TypeScript)

To use from JavaScript or TypeScript in Node.js, install using either npm:

$ npm install @pulumi/rabbitmq

or yarn:

$ yarn add @pulumi/rabbitmq

Python

To use from Python, install using pip:

$ pip install pulumi_rabbitmq

Go

To use from Go, use go get to grab the latest version of the library

$ go get github.com/pulumi/pulumi-rabbitmq/sdk/v2

.NET

To use from .NET, install using dotnet add package:

$ dotnet add package Pulumi.Rabbitmq

Configuration

The following configuration points are available:

  • rabbitmq:endpoint - (Required) The HTTP URL of the management plugin on the RabbitMQ server. The RabbitMQ management plugin must be enabled in order to use this provder. Note: This is not the IP address or hostname of the RabbitMQ server that you would use to access RabbitMQ directly. May be set via the RABBITMQ_ENDPOINT environment variable.
  • rabbitmq:username - (Required) Username to use to authenticate with the server. May be set via the RABBITMQ_USERNAME environment variable.
  • rabbitmq:password - (Optional) Password for the given user. May be set via the RABBITMQ_PASSWORD environment variable.
  • rabbitmq:insecure - (Optional) Trust self-signed certificates. May be set via the RABBITMQ_INSECURE environment variable.
  • rabbitmq:cacertFile - (Optional) The path to a custom CA / intermediate certificate. May be set via the RABBITMQ_CACERT environment variable.

Reference

For further information, please visit the RabbitMQ provider docs or for detailed reference documentation, please visit the API docs.