We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug When i want to create a Quorum or a Stream queue, an error is returned by the provider.
Provider version v1.8.0
RabbitMQ version 3.13.2
Terraform version Terraform v1.0.11 on linux_amd64
Affected resource(s)
Terraform Configuration Files
# Create a vhost resource "rabbitmq_vhost" "test" { name = "QueueTestVhost" } # Create a quorum queue resource "rabbitmq_queue" "test_quorum" { name = "QueueTestQuorum" vhost = "${rabbitmq_vhost.test.name}" settings { arguments = { "x-queue-type" : "quorum" } } } # Create a stream queue resource "rabbitmq_queue" "test_stream" { name = "QueueTestStream" vhost = "${rabbitmq_vhost.test.name}" settings { arguments = { "x-queue-type" : "stream" } } }
Expected behavior Two queues must be created.
Actual behavior Queues are not created and an error message is returned by the provider:
Error: Error 400 (bad_request): invalid property 'non-durable' for queue 'QueueTestQuorum' in vhost 'QueueTestVhost' │ │ with rabbitmq_queue.test_quorum, │ on main.tf line 45, in resource "rabbitmq_queue" "test_quorum": │ 45: resource "rabbitmq_queue" "test_quorum" { │ ╵ ╷ │ Error: Error 400 (bad_request): invalid property 'non-durable' for queue 'QueueTestStream' in vhost 'QueueTestVhost' │ │ with rabbitmq_queue.test_stream, │ on main.tf line 57, in resource "rabbitmq_queue" "test_stream": │ 57: resource "rabbitmq_queue" "test_stream" {
To reproduce Steps to reproduce the behavior:
terraform apply
Screenshots N/A
Additional context N/A
References N/A
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When i want to create a Quorum or a Stream queue, an error is returned by the provider.
Provider version
v1.8.0
RabbitMQ version
3.13.2
Terraform version
Terraform v1.0.11
on linux_amd64
Affected resource(s)
Terraform Configuration Files
Expected behavior
Two queues must be created.
Actual behavior
Queues are not created and an error message is returned by the provider:
To reproduce
Steps to reproduce the behavior:
terraform apply
Screenshots
N/A
Additional context
N/A
References
N/A
The text was updated successfully, but these errors were encountered: