community.rabbitmq.rabbitmq_user_limits 模块 – 管理 RabbitMQ 用户限制

注意

此模块是 community.rabbitmq 集合 (版本 1.3.0) 的一部分。

如果您正在使用 ansible 包,则您可能已安装此集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用: ansible-galaxy collection install community.rabbitmq

要在剧本中使用它,请指定: community.rabbitmq.rabbitmq_user_limits

community.rabbitmq 1.1.0 中的新增功能

概要

  • 管理 RabbitMQ 中用户限制的状态。自 RabbitMQ 3.8.10 版本起支持。

参数

参数

注释

max_channels

整数

最大通道数。

负值表示“无限制”。

当 *state* 为 absent 时忽略。

默认值: -1

max_connections

整数

最大并发客户端连接数。

负值表示“无限制”。

当 *state* 为 absent 时忽略。

默认值: -1

node

字符串

要管理的 RabbitMQ Erlang 节点的名称。

state

字符串

指定是否要设置或清除限制。

如果设置为 absent,则将清除 *max_connections* 和 *max_channels* 两者的限制。

选项

  • "present" ← (默认)

  • "absent"

user

别名:username, name

字符串 / 必需

要管理其限制的用户名。

备注

注意

  • 支持 check_mode

示例

- name: Limit both of the max number of connections and channels on the user 'guest'.
  community.rabbitmq.rabbitmq_user_limits:
    user: guest
    max_connections: 64
    max_channels: 256
    state: present

# This task implicitly clears the max number of channels limit using default value: -1.
- name: Limit the max number of connections on the user 'guest'.
  community.rabbitmq.rabbitmq_user_limits:
    user: guest
    max_connections: 64
    state: present

- name: Clear the limits on the user 'guest'.
  community.rabbitmq.rabbitmq_user_limits:
    user: guest
    state: absent

作者

  • Aitor Pazos (@aitorpazos)