Infoblox should be run locally (#35390)

* Infoblox should be run locally

* use connection: local
This commit is contained in:
John R Barker
2018-01-29 20:38:36 +00:00
committed by GitHub
parent d16bc1c3f4
commit 923174a856
6 changed files with 18 additions and 0 deletions

View File

@@ -72,6 +72,7 @@ EXAMPLES = '''
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
- name: update the comment for dns view
nios_dns_view:
@@ -82,6 +83,7 @@ EXAMPLES = '''
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
- name: remove the dns view instance
nios_dns_view:
@@ -91,6 +93,7 @@ EXAMPLES = '''
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
'''
RETURN = ''' # '''

View File

@@ -115,6 +115,8 @@ EXAMPLES = '''
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
- name: add a comment to an existing host record
nios_host_record:
name: host.ansible.com
@@ -126,6 +128,7 @@ EXAMPLES = '''
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
- name: remove a host record from the system
nios_host_record:
@@ -135,6 +138,7 @@ EXAMPLES = '''
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
'''
RETURN = ''' # '''

View File

@@ -110,6 +110,7 @@ EXAMPLES = '''
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
- name: set dhcp options for a network
nios_network:
@@ -123,6 +124,7 @@ EXAMPLES = '''
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
- name: remove a network
nios_network:
@@ -132,6 +134,7 @@ EXAMPLES = '''
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
'''
RETURN = ''' # '''

View File

@@ -67,6 +67,7 @@ EXAMPLES = '''
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
- name: update the comment for network view
nios_network_view:
@@ -77,6 +78,7 @@ EXAMPLES = '''
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
- name: remove the network view
nios_network_view:
@@ -86,6 +88,7 @@ EXAMPLES = '''
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
'''
RETURN = ''' # '''

View File

@@ -102,6 +102,7 @@ EXAMPLES = '''
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
- name: update the comment and ext attributes for an existing zone
nios_zone:
@@ -114,6 +115,7 @@ EXAMPLES = '''
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
- name: remove the dns zone
nios_zone:
@@ -123,6 +125,7 @@ EXAMPLES = '''
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
'''
RETURN = ''' # '''

View File

@@ -76,4 +76,6 @@ options:
variable.
required: false
default: 1.4
notes:
- "This module must be run locally, which can be achieved by specifying C(connection: local)."
"""