mirror of
https://github.com/rocky-linux/ansible-role-rabbitmq.git
synced 2024-12-04 18:36:26 +00:00
add defaults
This commit is contained in:
parent
3f1b22af02
commit
de5dda78f4
@ -1,7 +1,7 @@
|
|||||||
CI Badge
|
CI Badge
|
||||||
|
|
||||||
# Ansible template role
|
# RabbitMQ Role
|
||||||
basic Role to use going forward because I forget pieces
|
The RabbitMQ role for Rocky Linux infrastructure
|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
Ensure all dependencies are installed and then follow the below process
|
Ensure all dependencies are installed and then follow the below process
|
||||||
|
@ -1,2 +1,24 @@
|
|||||||
---
|
---
|
||||||
# ansible default variables - most variables live here
|
# ansible default variables - most variables live here
|
||||||
|
|
||||||
|
# You are expected to deploy the certificates yourself
|
||||||
|
rabbitmq_tls_ca_cert: "/etc/pki/tls/certs/ca-bundle.crt"
|
||||||
|
rabbitmq_tls_cert: "/etc/pki/tls/certs/{{ ansible_fqdn }}.crt"
|
||||||
|
rabbitmq_tls_key: "/etc/pki/tls/private/{{ ansible_fqdn }}.key"
|
||||||
|
rabbitmq_tls_link_dir: "/etc/rabbitmq/certs"
|
||||||
|
rabbitmq_file_limit: 500000
|
||||||
|
|
||||||
|
# You are expected to set these yourself in your playbook
|
||||||
|
#rabbitmq_cookie_staging: ...
|
||||||
|
#rabbitmq_cookie_production: ...
|
||||||
|
|
||||||
|
# You are expected to set these yourself in your playbook
|
||||||
|
#rabbitmq_admin_password_staging: ...
|
||||||
|
#rabbitmq_admin_password_production: ...
|
||||||
|
|
||||||
|
rabbitmq_plugins:
|
||||||
|
- rabbitmq_amqp1_0
|
||||||
|
- rabbitmq_auth_backend_ldap
|
||||||
|
- rabbitmq_auth_mechanism_ssl
|
||||||
|
- rabbitmq_management
|
||||||
|
- rabbitmq_mqtt
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
galaxy_info:
|
galaxy_info:
|
||||||
author: your name
|
author: Louis Abel
|
||||||
description: your role description
|
description: RabbitMQ Role
|
||||||
company: your company (optional)
|
company: Rocky Linux Foundation
|
||||||
|
|
||||||
# If the issue tracker for your role is not on github, uncomment the
|
# If the issue tracker for your role is not on github, uncomment the
|
||||||
# next line and provide a value
|
# next line and provide a value
|
||||||
@ -16,7 +16,7 @@ galaxy_info:
|
|||||||
# - CC-BY-4.0
|
# - CC-BY-4.0
|
||||||
license: MIT
|
license: MIT
|
||||||
|
|
||||||
min_ansible_version: 2.8
|
min_ansible_version: 2.9
|
||||||
|
|
||||||
# If this a Container Enabled role, provide the minimum Ansible Container version.
|
# If this a Container Enabled role, provide the minimum Ansible Container version.
|
||||||
# min_ansible_container_version:
|
# min_ansible_container_version:
|
||||||
@ -27,17 +27,10 @@ galaxy_info:
|
|||||||
# To view available platforms and versions (or releases), visit:
|
# To view available platforms and versions (or releases), visit:
|
||||||
# https://galaxy.ansible.com/api/v1/platforms/
|
# https://galaxy.ansible.com/api/v1/platforms/
|
||||||
#
|
#
|
||||||
# platforms:
|
platforms:
|
||||||
# - name: Fedora
|
- name: EL
|
||||||
# versions:
|
versions:
|
||||||
# - all
|
- 8
|
||||||
# - 25
|
|
||||||
# - name: SomePlatform
|
|
||||||
# versions:
|
|
||||||
# - all
|
|
||||||
# - 1.0
|
|
||||||
# - 7
|
|
||||||
# - 99.99
|
|
||||||
|
|
||||||
galaxy_tags: []
|
galaxy_tags: []
|
||||||
# List tags for your role here, one per line. A tag is a keyword that describes
|
# List tags for your role here, one per line. A tag is a keyword that describes
|
||||||
@ -47,7 +40,9 @@ galaxy_info:
|
|||||||
# NOTE: A tag is limited to a single word comprised of alphanumeric characters.
|
# NOTE: A tag is limited to a single word comprised of alphanumeric characters.
|
||||||
# Maximum 20 tags per role.
|
# Maximum 20 tags per role.
|
||||||
|
|
||||||
dependencies: []
|
dependencies:
|
||||||
|
- community.rabbitmq
|
||||||
|
|
||||||
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
|
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
|
||||||
# if you add dependencies to this list.
|
# if you add dependencies to this list.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user