Update for 2 regions with network timeout issue
diff --git a/tasks/with_no_proxy.yml b/tasks/with_no_proxy.yml
index 3abcb96..225fa67 100644
--- a/tasks/with_no_proxy.yml
+++ b/tasks/with_no_proxy.yml
@@ -6,5 +6,6 @@
yum:
name: "{{ item }}"
state: present
+ disable_gpg_check: yes
with_items: "{{ yum_os_minimum_packages }}"
when: yum_os_minimum_packages is defined
diff --git a/tasks/with_proxy.yml b/tasks/with_proxy.yml
index 3a84765..5b36e84 100644
--- a/tasks/with_proxy.yml
+++ b/tasks/with_proxy.yml
@@ -6,6 +6,7 @@
yum:
name: "{{ item }}"
state: present
+ disable_gpg_check: yes
with_items: "{{ yum_os_minimum_packages }}"
environment:
http_proxy: "{{ http_proxy }}"