mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
686 B
YAML
32 lines
686 B
YAML
5 years ago
|
---
|
||
|
- hosts: localhost
|
||
|
tasks:
|
||
|
- debug:
|
||
|
msg: "{{ query('lmdb_kv', 'nl', 'be', 'lu', db='jp.mdb') }}"
|
||
|
|
||
|
- debug:
|
||
|
var: item.1
|
||
|
loop: "{{ query('lmdb_kv', db='jp.mdb') }}"
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- query('lmdb_kv', 'nl', 'be', 'lu', db='jp.mdb') == ['Netherlands', 'Belgium', 'Luxembourg']
|
||
|
- query('lmdb_kv', db='jp.mdb')|length == 5
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- item.0 == 'nl'
|
||
|
- item.1 == 'Netherlands'
|
||
|
vars:
|
||
|
- lmdb_kv_db: jp.mdb
|
||
|
with_lmdb_kv:
|
||
|
- "n*"
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- item == 'Belgium'
|
||
|
vars:
|
||
|
- lmdb_kv_db: jp.mdb
|
||
|
with_lmdb_kv:
|
||
|
- be
|