From 03f448f329cd115b02c004b18221c3cc795d5424 Mon Sep 17 00:00:00 2001 From: Tim Rupp Date: Mon, 19 Nov 2018 13:40:37 -0800 Subject: [PATCH] Adds documentation to make note of tower/awx restrictions (#48900) When using modules that download files, you need to be aware of tower/awx restrictions to use those modules correctly. --- lib/ansible/modules/network/f5/bigip_qkview.py | 4 ++++ lib/ansible/modules/network/f5/bigip_ucs_fetch.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/lib/ansible/modules/network/f5/bigip_qkview.py b/lib/ansible/modules/network/f5/bigip_qkview.py index 5d47eb907e2..926059a1d90 100644 --- a/lib/ansible/modules/network/f5/bigip_qkview.py +++ b/lib/ansible/modules/network/f5/bigip_qkview.py @@ -69,6 +69,10 @@ options: type: bool notes: - This module does not include the "max time" or "restrict to blade" options. + - If you are using this module with either Ansible Tower or Ansible AWX, you + should be aware of how these Ansible products execute jobs in restricted + environments. More informat can be found here + https://clouddocs.f5.com/products/orchestration/ansible/devel/usage/module-usage-with-tower.html extends_documentation_fragment: f5 author: - Tim Rupp (@caphrim007) diff --git a/lib/ansible/modules/network/f5/bigip_ucs_fetch.py b/lib/ansible/modules/network/f5/bigip_ucs_fetch.py index 8ac737de9da..a88af84ca6f 100644 --- a/lib/ansible/modules/network/f5/bigip_ucs_fetch.py +++ b/lib/ansible/modules/network/f5/bigip_ucs_fetch.py @@ -62,6 +62,10 @@ notes: via any interface except, perhaps, logging in directly to the box (which would not support appliance mode). Therefore, the best this module can do is check for the existence of the file on disk; no check-summing. + - If you are using this module with either Ansible Tower or Ansible AWX, you + should be aware of how these Ansible products execute jobs in restricted + environments. More informat can be found here + https://clouddocs.f5.com/products/orchestration/ansible/devel/usage/module-usage-with-tower.html extends_documentation_fragment: f5 author: - Tim Rupp (@caphrim007)