-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
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
rabbitmq_user resource fails while applying #20
Comments
I can confirm for me it's an issue with 3.9.5 as I am able to create users through TF in 3.7.27 and 3.8.21. I haven't tested all 3.9.x versions but I'll update if I find out more. |
This looks fixed in the latest version of rabbithole and that version is used on master. @cyrilgdn Can we have a new release with the master code that contains the fix for this ? We are blocked by this and we don't want to fork the provider just for this. |
@tgraskemper @crisp2u @aggarwalaman1191 @cyrilgdn Can you please give an approximate date when it can be released ? |
@crisp2u @hareshdk19 I'll trigger a release this evening (CEST) or tomorrow. |
v1.6.0 has been released today, let me know if it fixes your issue. |
thanks @cyrilgdn , this worked pretty well. :) |
@cyrilgdn I am using rabbit version 3.9.6 and using latest provider v1.6.0 to create resources and it throws error while creating my vhost and user " Error 405 from RabbitMQ:EOF" |
Hi, no we’re not able to and I finally had to create resources manually
without terraform, as I had deadlines.
…On Fri, Nov 10, 2023 at 1:29 PM Bernie Durfee ***@***.***> wrote:
@cyrilgdn <https://github.com/cyrilgdn> I am using rabbit version 3.9.6
and using latest provider v1.6.0 to create resources and it throws error
while creating my vhost and user " Error 405 from RabbitMQ:EOF"
@Sweatha-g <https://github.com/Sweatha-g> were you able to resolve this
issue?
—
Reply to this email directly, view it on GitHub
<#20 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AOQIVEHMR5VJQMMFNWW4W2LYDZXBVAVCNFSM5CQOMYE2U5DIOJSWCZC7NNSXTN2JONZXKZKDN5WW2ZLOOQ5TCOBQGYZDEMJQHEZQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
@Sweatha-g |
Terraform Version
1.0.0
Affected Resource(s)
rabbitmq_user
Terraform Configuration Files
resource "rabbitmq_user" "cloudamqp_users" {
name = "test"
password = "test"
tags = ["administrator", "management"]
}
Expected Behavior
Create users successfully in cloudamqp
Actual Behavior
It creates user in the cloudamqp but terraform apply fails with below error:
Error: json: cannot unmarshal array into Go struct field UserInfo.tags of type string
with rabbitmq_user.cloudamqp_users
on test.tf line 50, in resource "rabbitmq_user" "cloudamqp_users":
resource "rabbitmq_user" "cloudamqp_users" {
Can you help what could be the issue here?
The text was updated successfully, but these errors were encountered: