Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nb_lookup.py: Add example for lookup with variable #1332

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions changelogs/fragments/1332-add-hostname_field-option.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- Add example for using ansible variables in lookup
14 changes: 14 additions & 0 deletions plugins/lookup/nb_lookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,20 @@
api_endpoint='http://localhost/',
api_filter='role=management tag=Dell'),
token='<redacted>') }}"
# This example uses an API Filter with a variable and jinja concatenation
- name: Set hostname fact
set_fact:
hostname: "my-server"
- name: Obtain details of a single device from NetBox
debug:
msg: >
"Device {{item.0.value.display}} (ID: {{item.0.key}}) was
manufactured by {{ item.0.value.device_type.manufacturer.name }}"
loop:
- '{{ query("netbox.netbox.nb_lookup", "devices",
api_endpoint="http://localhost/",
api_filter="name=" ~hostname,
token="<redacted>") }}'
"""

RETURN = """
Expand Down
15 changes: 15 additions & 0 deletions tests/integration/targets/v3.5/tasks/netbox_lookup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,18 @@
vars:
query_result: "{{ query('netbox.netbox.nb_lookup', 'devices', api_filter='id=1', api_endpoint='http://localhost:32768', token='0123456789abcdef0123456789abcdef01234567')
}}"

- name: "NETBOX_LOOKUP 11: Device query by ansible variable"
ansible.builtin.set_fact:
hostname: "L2"

- name: "NETBOX LOOKUP 11.1: Obtain details of a single device from NetBox"
ansible.builtin.debug:
msg: >
"Device {{item.0.value.display}} (ID: {{item.0.key}}) was
manufactured by {{ item.0.value.device_type.manufacturer.name }}"
loop:
- '{{ query("netbox.netbox.nb_lookup", "devices",
api_filter="name=" ~hostname,
api_endpoint="http://localhost:32768",
token="0123456789abcdef0123456789abcdef01234567") }}'
15 changes: 15 additions & 0 deletions tests/integration/targets/v3.6/tasks/netbox_lookup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,18 @@
vars:
query_result: "{{ query('netbox.netbox.nb_lookup', 'devices', api_filter='id=1', api_endpoint='http://localhost:32768', token='0123456789abcdef0123456789abcdef01234567')
}}"

- name: "NETBOX_LOOKUP 11: Device query by ansible variable"
ansible.builtin.set_fact:
hostname: "L2"

- name: "NETBOX LOOKUP 11.1: Obtain details of a single device from NetBox"
ansible.builtin.debug:
msg: >
"Device {{item.0.value.display}} (ID: {{item.0.key}}) was
manufactured by {{ item.0.value.device_type.manufacturer.name }}"
loop:
- '{{ query("netbox.netbox.nb_lookup", "devices",
api_filter="name=" ~hostname,
api_endpoint="http://localhost:32768",
token="0123456789abcdef0123456789abcdef01234567") }}'
15 changes: 15 additions & 0 deletions tests/integration/targets/v3.7/tasks/netbox_lookup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,18 @@
vars:
query_result: "{{ query('netbox.netbox.nb_lookup', 'devices', api_filter='id=1', api_endpoint='http://localhost:32768', token='0123456789abcdef0123456789abcdef01234567')
}}"

- name: "NETBOX_LOOKUP 11: Device query by ansible variable"
ansible.builtin.set_fact:
hostname: "L2"

- name: "NETBOX LOOKUP 11.1: Obtain details of a single device from NetBox"
ansible.builtin.debug:
msg: >
"Device {{item.0.value.display}} (ID: {{item.0.key}}) was
manufactured by {{ item.0.value.device_type.manufacturer.name }}"
loop:
- '{{ query("netbox.netbox.nb_lookup", "devices",
api_filter="name=" ~hostname,
api_endpoint="http://localhost:32768",
token="0123456789abcdef0123456789abcdef01234567") }}'
15 changes: 15 additions & 0 deletions tests/integration/targets/v4.0/tasks/netbox_lookup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,18 @@
vars:
query_result: "{{ query('netbox.netbox.nb_lookup', 'devices', api_filter='id=1', api_endpoint='http://localhost:32768', token='0123456789abcdef0123456789abcdef01234567')
}}"

- name: "NETBOX_LOOKUP 11: Device query by ansible variable"
ansible.builtin.set_fact:
hostname: "L2"

- name: "NETBOX LOOKUP 11.1: Obtain details of a single device from NetBox"
ansible.builtin.debug:
msg: >
"Device {{item.0.value.display}} (ID: {{item.0.key}}) was
manufactured by {{ item.0.value.device_type.manufacturer.name }}"
loop:
- '{{ query("netbox.netbox.nb_lookup", "devices",
api_filter="name=" ~hostname,
api_endpoint="http://localhost:32768",
token="0123456789abcdef0123456789abcdef01234567") }}'
15 changes: 15 additions & 0 deletions tests/integration/targets/v4.1/tasks/netbox_lookup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,18 @@
vars:
query_result: "{{ query('netbox.netbox.nb_lookup', 'devices', api_filter='id=1', api_endpoint='http://localhost:32768', token='0123456789abcdef0123456789abcdef01234567')
}}"

- name: "NETBOX_LOOKUP 11: Device query by ansible variable"
ansible.builtin.set_fact:
hostname: "L2"

- name: "NETBOX LOOKUP 11.1: Obtain details of a single device from NetBox"
ansible.builtin.debug:
msg: >
"Device {{item.0.value.display}} (ID: {{item.0.key}}) was
manufactured by {{ item.0.value.device_type.manufacturer.name }}"
loop:
- '{{ query("netbox.netbox.nb_lookup", "devices",
api_filter="name=" ~hostname,
api_endpoint="http://localhost:32768",
token="0123456789abcdef0123456789abcdef01234567") }}'
Loading