» rabbitmq_user

The rabbitmq_user resource creates and manages a user.

» Example Usage

resource "rabbitmq_user" "test" {
  name     = "mctest"
  password = "foobar"
  tags     = ["administrator", "management"]
}

» Argument Reference

The following arguments are supported:

  • name - (Required) The name of the user.

  • password - (Required) The password of the user. The value of this argument is plain-text so make sure to secure where this is defined.

  • tags - (Optional) Which permission model to apply to the user. Valid options are: management, policymaker, monitoring, and administrator.

» Attributes Reference

No further attributes are exported.

» Import

Users can be imported using the name, e.g.

terraform import rabbitmq_user.test mctest