20 lines
474 B
Plaintext
20 lines
474 B
Plaintext
---
|
|
|
|
env: staging
|
|
application: "{{ lookup('env', 'PULUMI_SUB_STACK') }}"
|
|
bastion_group_name: "{{ application }}_bastion"
|
|
|
|
# DNS resolve
|
|
preferred_dns: "8.8.8.8"
|
|
fallback_dns: "4.4.4.4"
|
|
|
|
# infrastructure
|
|
infrastructure_file_path: "{{ inventory_dir }}/infra/{{ application }}.json"
|
|
|
|
# proxy
|
|
proxy_user: "felcloud"
|
|
proxy_passwd: "ijo7mgHEWjytM"
|
|
proxy_hostname: "{{ groups[bastion_group_name] | first }}"
|
|
proxy_ip: "{{ hostvars[proxy_hostname].ansible_host }}"
|
|
proxy_port: 3128
|