1# WARNING: We do not recommend to expose Director and any other services over public addresses.
2
3- type: replace
4  path: /networks/-
5  value:
6    name: public
7    type: vip
8
9- type: replace
10  path: /instance_groups/name=bosh/networks/0/default?
11  value: [dns, gateway]
12
13- type: replace
14  path: /instance_groups/name=bosh/networks/-
15  value:
16    name: public
17    static_ips: [((external_ip))]
18
19- type: replace
20  path: /instance_groups/name=bosh/properties/director/default_ssh_options?/gateway_host
21  value: ((external_ip))
22
23# todo should not access non-defined vars
24- type: replace
25  path: /cloud_provider/mbus
26  value: https://mbus:((mbus_bootstrap_password))@((external_ip)):6868
27
28- type: replace
29  path: /cloud_provider/ssh_tunnel/host
30  value: ((external_ip))
31
32- type: replace
33  path: /variables/name=mbus_bootstrap_ssl/options/alternative_names/-
34  value: ((external_ip))
35
36- type: replace
37  path: /variables/name=director_ssl/options/alternative_names/-
38  value: ((external_ip))
39