-
Notifications
You must be signed in to change notification settings - Fork 313
/
Copy pathconfig.json.j2
357 lines (337 loc) · 15.8 KB
/
config.json.j2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
{# This template will be passed through the 'to_nice_json' filter #}
{# The filter fixes whitespace, indentation and comma's on the last item #}
{
{# Common Settings #}
{## Node ##}
{% if consul_node_name is defined %}
"node_name": "{{ consul_node_name }}",
{% endif %}
"datacenter": "{{ consul_datacenter }}",
"domain": "{{ consul_domain }}",
{% if consul_alt_domain %}
"alt_domain": "{{ consul_alt_domain }}",
{% endif %}
{% if consul_version is version_compare('0.7.3', '>=') and consul_node_meta | length > 0 %}
"node_meta": {{ consul_node_meta | default({})| to_json }},
{% endif %}
{# Performance Settings #}
"performance": {{ consul_performance | to_json }},
{## Addresses ##}
"bind_addr": "{{ consul_bind_address }}",
"advertise_addr": "{{ consul_advertise_address }}",
"advertise_addr_wan": "{{ consul_advertise_address_wan }}",
"translate_wan_addrs": {{ consul_translate_wan_address | bool | to_json }},
"client_addr": "{{ consul_client_address }}",
"addresses": {
{% if consul_version is version_compare('0.8.0', '<') %}
"rpc": "{{ consul_addresses.rpc }}",
{% endif %}
"dns": "{{ consul_addresses.dns }}",
"http": "{{ consul_addresses.http }}",
"https": "{{ consul_addresses.https }}",
{% if consul_version is version_compare('1.3.0', '>=') %}
"grpc": "{{ consul_addresses.grpc }}",
{% endif %}
{% if consul_version is version_compare('1.14.0', '>=') %}
"grpc_tls": "{{ consul_addresses.grpc_tls }}",
{% endif %}
},
{## Ports Used ##}
"ports": {
{% if consul_version is version_compare('0.8.0', '<') %}
"rpc": {{ consul_ports.rpc}},
{% endif %}
"dns": {{ consul_ports.dns }},
"http": {{ consul_ports.http }},
"https": {{ consul_ports.https }},
"serf_lan": {{ consul_ports.serf_lan }},
"serf_wan": {{ consul_ports.serf_wan }},
"server": {{ consul_ports.server }},
{% if consul_version is version_compare('1.3.0', '>=') %}
"grpc": {{ consul_ports.grpc }},
{% endif %}
{% if consul_version is version_compare('1.14.0', '>=') %}
"grpc_tls": {{ consul_ports.grpc_tls }}
{% endif %}
},
{## Raft protocol ##}
"raft_protocol": {{ consul_raft_protocol }},
{## DNS ##}
{% if consul_recursors | length > 0 %}
"recursors": {{ consul_recursors | to_json }},
{% endif %}
{## Agent ##}
"data_dir": "{{ consul_data_path }}",
"log_level": "{{ consul_log_level }}",
{% if consul_syslog_enable | bool %}
"enable_syslog": {{ consul_syslog_enable | bool | to_json }},
"syslog_facility": "{{ consul_syslog_facility }}",
{% else %}
"log_file": "{{ consul_log_path }}/{{ consul_log_file }}",
"log_rotate_bytes": {{ consul_log_rotate_bytes }},
"log_rotate_duration": "{{ consul_log_rotate_duration }}",
{% if consul_version is version_compare('1.5.3', '>=') %}
"log_rotate_max_files": {{ consul_log_rotate_max_files }},
{% endif %}
{% endif %}
"disable_update_check": {{ consul_disable_update_check | bool | to_json }},
"enable_script_checks": {{ consul_enable_script_checks | bool | to_json }},
"enable_local_script_checks": {{ consul_enable_local_script_checks | bool | to_json }},
{% if leave_on_terminate is defined %}
"leave_on_terminate": {{ leave_on_terminate | bool | to_json }},
{% endif %}
{## Encryption and TLS ##}
{% if consul_encrypt_enable | bool %}
"encrypt": "{{ consul_raw_key }}",
"encrypt_verify_incoming": {{ consul_encrypt_verify_incoming | bool | to_json }},
"encrypt_verify_outgoing": {{ consul_encrypt_verify_outgoing | bool | to_json }},
{% endif %}
{% if consul_disable_keyring_file | bool %}
"disable_keyring_file": true,
{% endif %}
{% if consul_tls_enable | bool %}
{% if consul_version is version_compare('1.12.0', '>=') %}
"tls": {
"defaults": {
"ca_file": "{{ consul_tls_dir }}/{{ consul_tls_ca_crt | basename }}",
{% if auto_encrypt is not defined or (auto_encrypt is defined and not auto_encrypt.enabled | bool)
or (config_item.config_version != 'client') | bool %}
"cert_file": "{{ consul_tls_dir }}/{{ consul_tls_server_crt | basename }}",
"key_file": "{{ consul_tls_dir }}/{{ consul_tls_server_key | basename }}",
"verify_incoming": {{ consul_tls_verify_incoming | bool | to_json }},
{% else %}
"verify_incoming": false,
{% endif %}
"verify_outgoing": {{ consul_tls_verify_outgoing | bool | to_json }},
"tls_min_version": "{{ consul_tls_min_version }}",
{% if consul_tls_cipher_suites is defined and consul_tls_cipher_suites %}
"tls_cipher_suites": "{{ consul_tls_cipher_suites}}",
{% endif %}
},
{% if consul_tls_verify_incoming_rpc is defined or consul_tls_verify_server_hostname is defined %}
"internal_rpc": {
"verify_incoming": {{consul_tls_verify_incoming_rpc | bool| to_json }},
"verify_server_hostname": {{ consul_tls_verify_server_hostname | bool | to_json }},
},
{% endif %}
{% if consul_tls_verify_incoming_https is defined %}
"https": {
"verify_incoming": {{consul_tls_verify_incoming_https | bool| to_json }},
},
{% endif %}
},
{% else %}
"ca_file": "{{ consul_tls_dir }}/{{ consul_tls_ca_crt | basename }}",
{% if auto_encrypt is not defined or (auto_encrypt is defined and not auto_encrypt.enabled | bool)
or (config_item.config_version != 'client') | bool %}
"cert_file": "{{ consul_tls_dir }}/{{ consul_tls_server_crt | basename }}",
"key_file": "{{ consul_tls_dir }}/{{ consul_tls_server_key | basename }}",
"verify_incoming": {{ consul_tls_verify_incoming | bool | to_json }},
{% else %}
"verify_incoming": false,
{% endif %}
"verify_outgoing": {{ consul_tls_verify_outgoing | bool | to_json }},
"verify_incoming_rpc": {{consul_tls_verify_incoming_rpc | bool| to_json }},
"verify_incoming_https": {{consul_tls_verify_incoming_https | bool| to_json }},
"verify_server_hostname": {{ consul_tls_verify_server_hostname | bool | to_json }},
"tls_min_version": "{{ consul_tls_min_version }}",
{% if consul_tls_cipher_suites is defined and consul_tls_cipher_suites %}
"tls_cipher_suites": "{{ consul_tls_cipher_suites}}",
{% endif %}
{% if consul_version is version_compare('1.11.0', '<') %}
"tls_prefer_server_cipher_suites": {{ consul_tls_prefer_server_cipher_suites | bool | to_json }},
{% endif %}
{% endif %}
{% if auto_encrypt is defined %}
"auto_encrypt": {
{% if auto_encrypt.enabled | bool and (config_item.config_version != 'client') | bool %}
"allow_tls": true,
{% endif %}
{% if auto_encrypt.enabled | bool and (config_item.config_version == 'client') | bool %}
"tls": true,
{% endif %}
{% if auto_encrypt.dns_san is defined %}
"dns_san": {{ auto_encrypt.dns_san | list | to_json }},
{% endif %}
{% if auto_encrypt.ip_san is defined %}
"ip_san": {{ auto_encrypt.ip_san | list | to_json }},
{% endif %}
},
{% endif %}
{% endif %}
{## LAN Join ##}
"retry_interval": "{{ consul_retry_interval }}",
"retry_max": {{ consul_retry_max | int }},
"retry_join":
{% if not consul_cloud_autodiscovery | bool %}
{% if not consul_retry_join_skip_hosts %}
{% for server in _consul_lan_servers %}
{% set _ = consul_join.append(hostvars[server]['consul_advertise_address'] | default(hostvars[server]['consul_bind_address']) | default(hostvars[server]['ansible_default_ipv4']['address']) | mandatory) %}
{% endfor %}
{% endif %}
{{ consul_join | map('ansible.utils.ipwrap') | list | to_json }},
{% else %}
["{{ consul_cloud_autodiscovery_string }}"],
{% endif %}
{## Server/Client ##}
"server": {{ (config_item.config_version != 'client') | bool | to_json }},
{## Enable Connect on Server ##}
{% if consul_connect_enabled | bool %}
"connect": {
"enabled": true
},
{% endif %}
{# Client Settings #}
{% if (config_item.config_version == 'client') %}
{## ACLs ##}
{% if consul_acl_enable | bool %}
{% if consul_version is version_compare('1.4.0', '>=') %}
"primary_datacenter": "{{ consul_acl_datacenter }}",
"acl": {
"enabled": true,
"default_policy": "{{ consul_acl_default_policy }}",
"down_policy": "{{ consul_acl_down_policy }}",
"token_ttl": "{{ consul_acl_ttl }}",
"enable_token_persistence": {{ consul_acl_token_persistence | bool | to_json}},
"tokens": {
{% if consul_acl_token | trim != '' %}
"default": "{{ consul_acl_token }}",
{% endif %}
{% if consul_acl_agent_token | trim != '' %}
"agent": "{{ consul_acl_agent_token }}",
{% endif %}
{% if consul_acl_agent_master_token | trim != '' %}
{% if consul_version is version_compare('1.11.0', '>=') %}
"agent_recovery": "{{ consul_acl_agent_master_token }}",
{% else %}
"agent_master": "{{ consul_acl_agent_master_token }}",
{% endif %}
{% endif %}
}
},
{% else %}
{% if consul_acl_token | trim != '' %}
"acl_token": "{{ consul_acl_token }}",
{% endif %}
{% if consul_acl_agent_token | trim != '' %}
"acl_agent_token": "{{ consul_acl_agent_token }}",
{% endif %}
{% if consul_acl_agent_master_token | trim != '' %}
"acl_agent_master_token": "{{ consul_acl_agent_master_token }}",
{% endif %}
"acl_ttl": "{{ consul_acl_ttl }}",
"acl_datacenter": "{{ consul_acl_datacenter }}",
"acl_down_policy": "{{ consul_acl_down_policy }}",
{% endif %}
{% endif %}
{% endif %}
{# Server Settings #}
{% if (config_item.config_version == 'server') or (config_item.config_version == 'bootstrap') %}
{## Bootstrap settings ##}
"bootstrap": {{ (config_item.config_version == 'bootstrap') | bool | to_json }},
{% if consul_bootstrap_expect and not (config_item.config_version == 'bootstrap') %}
"bootstrap_expect": {{ consul_bootstrap_expect_value }},
{## AutoPilot ##}
{% if consul_autopilot_enable | bool %}
"autopilot": {
"cleanup_dead_servers": {{ consul_autopilot_cleanup_dead_Servers | bool | to_json }},
"last_contact_threshold": "{{ consul_autopilot_last_contact_threshold }}",
"max_trailing_logs": {{ consul_autopilot_max_trailing_logs }},
"server_stabilization_time": "{{ consul_autopilot_server_stabilization_time }}"{{ ',' if consul_enterprise else '' }}
{% if consul_enterprise %}
"redundancy_zone_tag": "{{ consul_autopilot_redundancy_zone_tag }}",
"disable_upgrade_migration": {{ consul_autopilot_disable_upgrade_migration | bool | to_json }},
"upgrade_version_tag": "{{ consul_autopilot_upgrade_version_tag }}"
{% endif %}
},
{% endif %}
{% endif %}
{## WAN Join ##}
"retry_interval_wan": "{{ consul_retry_interval_wan }}",
"retry_max_wan": {{ consul_retry_max_wan | int }},
{% if _consul_wan_servercount | int > 0 %}
"retry_join_wan":
{% for server in _consul_wan_servers %}
{% set _ = consul_join_wan.append(hostvars[server]['consul_advertise_address_wan'] | default(hostvars[server]['consul_bind_address'])) %}
{% endfor %}
{{ consul_join_wan | map('ansible.utils.ipwrap') | list | to_json }},
{% endif %}
{## ACLs ##}
{% if consul_acl_enable | bool %}
{% if consul_acl_replication_enable | trim != '' %}
"enable_acl_replication": {{ consul_acl_replication_enable | bool | to_json }},
{% endif %}
{% if consul_version is version_compare('1.4.0', '>=') %}
"primary_datacenter": "{{ consul_acl_datacenter }}",
"acl": {
"enabled": true,
"default_policy": "{{ consul_acl_default_policy }}",
"down_policy": "{{ consul_acl_down_policy }}",
"token_ttl": "{{ consul_acl_ttl }}",
"enable_token_persistence": {{ consul_acl_token_persistence | bool | to_json}},
"tokens": {
{% if consul_acl_token | trim != '' %}
"default": "{{ consul_acl_token }}",
{% endif %}
{% if consul_acl_agent_token | trim != '' %}
"agent": "{{ consul_acl_agent_token }}",
{% endif %}
{% if consul_acl_agent_master_token | trim != '' %}
{% if consul_version is version_compare('1.11.0', '>=') %}
"agent_recovery": "{{ consul_acl_agent_master_token }}",
{% else %}
"agent_master": "{{ consul_acl_agent_master_token }}",
{% endif %}
{% endif %}
{% if consul_version is version_compare('0.9.1', '<') or consul_acl_master_token | trim != '' %}
{% if consul_version is version_compare('1.11.0', '>=') %}
"initial_management": "{{ consul_acl_master_token }}",
{% else %}
"master": "{{ consul_acl_master_token }}",
{% endif %}
{% endif %}
{% if consul_acl_replication_token | trim != '' %}
"replication": "{{ consul_acl_replication_token }}",
{% endif %}
}
},
{% else %}
{% if consul_acl_token | trim != '' %}
"acl_token": "{{ consul_acl_token }}",
{% endif %}
{% if consul_acl_agent_token | trim != '' %}
"acl_agent_token": "{{ consul_acl_agent_token }}",
{% endif %}
{% if consul_acl_agent_master_token | trim != '' %}
"acl_agent_master_token": "{{ consul_acl_agent_master_token }}",
{% endif %}
"acl_ttl": "{{ consul_acl_ttl }}",
"acl_datacenter": "{{ consul_acl_datacenter }}",
"acl_down_policy": "{{ consul_acl_down_policy }}",
{% if consul_version is version_compare('0.9.1', '<') or
consul_acl_master_token | trim != '' %}
"acl_master_token": "{{ consul_acl_master_token }}",
{% endif %}
{% if consul_acl_replication_enable | trim != '' %}
"enable_acl_replication": {{ consul_acl_replication_enable | bool | to_json }},
{% endif %}
{% if consul_acl_replication_token | trim != '' %}
"acl_replication_token": "{{ consul_acl_replication_token }}",
{% endif %}
"acl_default_policy": "{{ consul_acl_default_policy }}",
{% endif %}
{% endif %}
{% endif %}
{## Limits ##}
{% if consul_version is version_compare('0.9.3', '>=') and consul_limits | length > 0 %}
"limits": {{ consul_limits | default({})| to_json }},
{% endif %}
{## UI ##}
{% if consul_version is version_compare('1.9.0', '>=') %}
"ui_config": {
"enabled": {{ consul_ui | bool | to_json }}
}
{% else %}
"ui": {{ consul_ui | bool | to_json }}
{% endif %}
}