Resource Type: rabbitmq_vhost

Defined in:
lib/puppet/type/rabbitmq_vhost.rb
Providers:
rabbitmqctl

Overview

Native type for managing rabbitmq vhosts

Examples:

query all current vhosts

$ puppet resource rabbitmq_vhost`

Create a rabbitmq_vhost

rabbitmq_vhost { 'myvhost':
  ensure => present,
}

Properties

  • ensure (defaults to: present)

    The basic property that the resource should be in.

    Supported values:
    • present
    • absent

Parameters

  • name (namevar)

    The name of the vhost to add

    Supported values:
    • %r{^\S+$}
  • provider

    The specific backend to use for this ‘rabbitmq_vhost` resource. You will seldom need to specify this — Puppet will usually discover the appropriate provider for your platform.