Add "managed by Ansible" notice to all template files
Included comments at the top of all template files indicating that they are managed by Ansible and should not be edited manually. This ensures clarity and avoids unintended manual modifications.
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
# This file is managed by ansible. Do not edit it by hand
|
||||
|
||||
services:
|
||||
frontend:
|
||||
image: {{ registry_url }}/{{ registry_project }}/{{ chill_image_nginx_name }}:{{ item.chill_image_tag }}
|
||||
|
@@ -1,3 +1,4 @@
|
||||
# this file is managed by ansible. Do not edit it by hand
|
||||
chill_doc_store:
|
||||
use_driver: local_storage
|
||||
local_storage:
|
||||
|
@@ -1,3 +1,5 @@
|
||||
# this file is managed by ansible. Do not edit it by hand
|
||||
|
||||
framework:
|
||||
trusted_proxies: '127.0.0.1,REMOTE_ADDR{% for ip in traefik_trusted_ips|default([]) %},{{ ip }}{% endfor %}'
|
||||
trusted_headers: ['x-forwarded-for', 'x-forwarded-host', 'x-forwarded-proto', 'x-forwarded-port']
|
||||
|
@@ -1,3 +1,4 @@
|
||||
# this file is managed by ansible. Do not edit it by hand
|
||||
lexik_jwt_authentication:
|
||||
# in production, the secret must be located in an environment variable
|
||||
# for converting the file to a raw variable, use this command:
|
||||
|
@@ -1,3 +1,4 @@
|
||||
# this file is managed by ansible. Do not edit it by hand
|
||||
framework:
|
||||
messenger:
|
||||
transports:
|
||||
|
@@ -1,3 +1,4 @@
|
||||
# this file is managed by ansible. Do not edit it by hand
|
||||
parameters:
|
||||
log_prefix: {{ item.chill_environment }}
|
||||
monolog:
|
||||
|
@@ -1,3 +1,4 @@
|
||||
# This file is managed by ansible. Do not edit it by hand
|
||||
APP_ENV=prod
|
||||
APP_DEBUG=false
|
||||
TRUSTED_PROXIES=10.0.0.0/8,192.168.0.0/16,172.16.0.0/16
|
||||
|
@@ -1,3 +1,4 @@
|
||||
# this file is managed by ansible. Do not edit it by hand
|
||||
POSTGRES_DB={{ item.chill_config.database_name }}
|
||||
POSTGRES_USER={{ item.chill_config.database_user }}
|
||||
POSTGRES_PASSWORD={{ item.chill_config.database_password }}
|
||||
|
@@ -1,2 +1,3 @@
|
||||
# this file is managed by ansible. Do not edit it by hand.
|
||||
RABBITMQ_DEFAULT_USER={{ item.chill_config.rabbitmq_user }}
|
||||
RABBITMQ_DEFAULT_PASS={{ item.chill_config.rabbitmq_password }}
|
@@ -1,3 +1,4 @@
|
||||
# this file is managed by ansible. Do not edit it by hand.
|
||||
services:
|
||||
reverse-proxy:
|
||||
# The official v3 Traefik docker image
|
||||
|
Reference in New Issue
Block a user