remove quotes from int

This commit is contained in:
Louis Abel 2023-07-17 00:20:54 -07:00
parent fe0fc52856
commit c47264d99d
Signed by: label
GPG Key ID: 3331F061D1D9990E
1 changed files with 16 additions and 16 deletions

View File

@ -10,14 +10,14 @@ rabbitmq_vhosts:
tags:
ha-mode: 'all'
ha-sync-mode: 'automatic'
ha-sync-batch-size: '10000'
ha-sync-batch-size: 10000
- name: pubsub_sweeper
apply_to: queues
state: present
pattern: ".*"
tags:
expires: '111600000'
max-length-bytes: '1073741824'
expires: 111600000
max-length-bytes: 1073741824
- vhost: '/public_pubsub'
state: present
policy:
@ -26,8 +26,8 @@ rabbitmq_vhosts:
state: present
pattern: ".*"
tags:
expires: '3600000'
max-length-bytes: '52428800'
expires: 3600000
max-length-bytes: 52428800
- vhost: mbs
state: present
policy:
@ -38,7 +38,7 @@ rabbitmq_vhosts:
tags:
ha-mode: 'all'
ha-sync-mode: 'automatic'
ha-sync-batch-size: '10000'
ha-sync-batch-size: 10000
- vhost: distrobuild
state: present
policy:
@ -49,7 +49,7 @@ rabbitmq_vhosts:
tags:
ha-mode: 'all'
ha-sync-mode: 'automatic'
ha-sync-batch-size: '10000'
ha-sync-batch-size: 10000
- vhost: odcs
state: present
policy:
@ -60,14 +60,14 @@ rabbitmq_vhosts:
tags:
ha-mode: 'all'
ha-sync-mode: 'automatic'
ha-sync-batch-size: '10000'
ha-sync-batch-size: 10000
- name: pubsub_sweeper
apply_to: queues
state: present
pattern: ".*"
tags:
expires: '111600000'
max-length-bytes: '1073741824'
expires: 111600000
max-length-bytes: 1073741824
# Legacy entries
- vhost: pubsub
state: present
@ -79,14 +79,14 @@ rabbitmq_vhosts:
tags:
ha-mode: 'all'
ha-sync-mode: 'automatic'
ha-sync-batch-size: '10000'
ha-sync-batch-size: 10000
- name: pubsub_sweeper
apply_to: queues
state: present
pattern: ".*"
tags:
expires: '111600000'
max-length-bytes: '1073741824'
expires: 111600000
max-length-bytes: 1073741824
- vhost: public_pubsub
state: present
policy:
@ -95,8 +95,8 @@ rabbitmq_vhosts:
state: present
pattern: ".*"
tags:
expires: '3600000'
max-length-bytes: '52428800'
expires: 3600000
max-length-bytes: 52428800
- vhost: '/mbs'
state: present
policy:
@ -107,5 +107,5 @@ rabbitmq_vhosts:
tags:
ha-mode: 'all'
ha-sync-mode: 'automatic'
ha-sync-batch-size: '10000'
ha-sync-batch-size: 10000
...