updated proxy config
diff --git a/tasks/with_no_proxy.yml b/tasks/with_no_proxy.yml
index 3221e66..004cd77 100644
--- a/tasks/with_no_proxy.yml
+++ b/tasks/with_no_proxy.yml
@@ -1,6 +1,6 @@
---
-- name: Install Apigee Setup
+- name: Install Apigee Setup with no proxy
shell: '{{ apigee_service }} apigee-setup install'
-- name: Install Apigee Admin
+- name: Install Apigee Admin with no proxy
shell: '{{ apigee_service }} apigee-adminapi install'
diff --git a/tasks/with_proxy.yml b/tasks/with_proxy.yml
index 52148f5..012471e 100644
--- a/tasks/with_proxy.yml
+++ b/tasks/with_proxy.yml
@@ -1,12 +1,14 @@
---
-- name: Install Apigee Setup
+- name: Install Apigee Setup with proxy
shell: '{{ apigee_service }} apigee-setup install'
environment:
+ no_proxy: "{{ no_proxy }}"
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"
-- name: Install Apigee Admin
+- name: Install Apigee Admin with proxy
shell: '{{ apigee_service }} apigee-adminapi install'
environment:
+ no_proxy: "{{ no_proxy }}"
http_proxy: "{{ http_proxy }}"
https_proxy: "{{ https_proxy }}"