mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
9 lines
286 B
Text
9 lines
286 B
Text
{% if stackdriver_http_proxy is defined %}
|
|
export http_proxy="{{ stackdriver_http_proxy }}"
|
|
{% endif %}
|
|
{% if stackdriver_https_proxy is defined %}
|
|
export https_proxy="{{ stackdriver_https_proxy }}"
|
|
{% endif %}
|
|
{% if stackdriver_no_proxy %}
|
|
export no_proxy==169.254.169.254
|
|
{% endif %}
|