You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hetzner-ansible/roles/connect/defaults/main.yml

40 lines
1.4 KiB
YAML

---
connect_image_name: "{{ shared_service_hostname_harbor }}/smardigo/connect-whitelabel-app"
process_search_image_name: "{{ shared_service_hostname_harbor }}/smardigo/process-search"
connect_mail_host: "{{ shared_service_mail_hostname }}"
connect_mail_properties_base_url: "{{ http_s }}://{{ connect_base_url }}"
connect_mail_properties_base_url_extern: "{{ http_s }}://{{ connect_base_url }}"
connect_config_delete_scope_enabled: false
connect_config_local_import_enabled: false
connect_datasource_action_enabled: false
connect_element_template_enabled: false
connect_external_task_script_worker_enabled: false
connect_resubmission_enabled: false
connect_search_elastic_enabled: false
connect_swagger_enabled: true
connect_workflow_heatmap_enabled: false
firewall_rule_connect_customer:
- direction: in
protocol: tcp
port: "443"
source_ips: "{{ connect_customer_networks }}"
destination_ips: []
description: customer specific access to https services
firewall_rule_lets_encrypt_http_challenge:
- direction: in
protocol: tcp
port: "80"
source_ips:
- "0.0.0.0/0"
destination_ips: []
description: lets encrypt http challenge due to external managed dns entries
connect_customer_firewall_entry_rules: "{{
(firewall_rule_connect_customer if (connect_customer_networks | length > 0) else [])
+ (firewall_rule_lets_encrypt_http_challenge if (connect_customer_urls_extern | length > 0) else [])
}}"