You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@
16
16
17
17
[RabbitMQ](https://rabbitmq.com) is an AMQP message broker server. The **RabbitMQ provider** exposes resources used to manage the configuration of resources in a RabbitMQ server.
18
18
19
-
The provider supports versions `3.13.x`, `3.12.x` and `3.11.x` of RabbitMQ. It may still work with versions `3.10.x`, `3.9.x` and `3.8.x`, however these versions are no longer officialy supported.
19
+
The provider supports versions `4.0.x`, `3.13.x` and `3.12.x` of RabbitMQ. It may still work with versions`3.11.x`,`3.10.x`, `3.9.x` and `3.8.x`, however these versions are no longer officialy supported.
20
20
> For information on RabbitMQ versions, see the RabbitMQ [Release Information](https://www.rabbitmq.com/release-information).
21
21
22
22
## Usage Example
@@ -25,20 +25,20 @@ The provider supports versions `3.13.x`, `3.12.x` and `3.11.x` of RabbitMQ. It m
25
25
# 1. Specify the version of the RabbitMQ Provider to use
26
26
terraform {
27
27
required_providers {
28
-
azurerm = {
28
+
rabbitmq = {
29
29
source = "rfd59/rabbitmq"
30
30
version = "2.1.0"
31
31
}
32
32
}
33
33
}
34
34
35
35
# 2. Configure the RabbitMQ Provider
36
-
provider "azurerm" {
36
+
provider "rabbi" {
37
37
# The RabbitMQ management plugin must be enabled on the server, to use this provider.
38
38
# You can enable the plugin by doing something similar to `$ sudo rabbitmq-plugins enable rabbitmq_management`
0 commit comments