rabbitmq_vhost
The rabbitmq_vhost
resource creates and manages a vhost.
Example Usage
resource "rabbitmq_vhost" "my_vhost" {
name = "my_vhost"
}
Argument Reference
The following arguments are supported:
name
- (Required) The name of the vhost.
Attributes Reference
No further attributes are exported.
Import
Vhosts can be imported using the name
, e.g.
terraform import rabbitmq_vhost.my_vhost my_vhost
See the source of this document at Terraform.io