From 788a2e5fc89ab50fb6cf43d12d1de0e8d222b6c3 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Thu, 2 Feb 2017 13:45:22 -0600 Subject: [PATCH] Update validate-modules (#20932) * Update validate-modules * Validates ANSIBLE_METADATA * Ensures imports happen after documentation vars * Some pep8 cleanup * Clean up some left over unneeded code * Update modules for new module guidelines and validate-modules checks * Update imports for ec2_vpc_route_table and ec2_vpc_nat_gateway --- .../web_infrastructure/ansible_tower/tower_organization.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/ansible/modules/web_infrastructure/ansible_tower/tower_organization.py b/lib/ansible/modules/web_infrastructure/ansible_tower/tower_organization.py index 8788f58ef0..7c1d3397ac 100644 --- a/lib/ansible/modules/web_infrastructure/ansible_tower/tower_organization.py +++ b/lib/ansible/modules/web_infrastructure/ansible_tower/tower_organization.py @@ -16,6 +16,10 @@ # You should have received a copy of the GNU General Public License # along with this software. If not, see . +ANSIBLE_METADATA = {'status': ['preview'], + 'supported_by': 'community', + 'version': '1.0'} + DOCUMENTATION = ''' --- module: tower_organization