mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-04 23:39:09 -07:00
Some checks failed
EOL CI / EOL Sanity (Ⓐ2.15) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py2.7) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py3.10) (push) Has been cancelled
EOL CI / EOL Units (Ⓐ2.15+py3.5) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/1/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/2/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/3/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/1/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/2/) (push) Has been cancelled
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/3/) (push) Has been cancelled
nox / Run extra sanity tests (push) Has been cancelled
fixed hidden warnings from extra tests - batch 2 (#10027)
* fixed hidden warnings from extra tests - batch 2
* remove multiple yaml doc markers from EXAMPLE blocks
* Apply suggestions from code review
Co-authored-by: Felix Fontein <felix@fontein.de>
* Apply suggestions from code review
* Apply suggestions from code review
* dig: adjust markup for return suboptions
* Update plugins/lookup/dig.py
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit 299172d27b
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
107 lines
3.3 KiB
Python
107 lines
3.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (c) 2016, Josh Bradley <jbradley(at)digitalocean.com>
|
|
# Copyright (c) 2017 Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
DOCUMENTATION = r"""
|
|
author: Unknown (!UNKNOWN)
|
|
name: chef_databag
|
|
short_description: fetches data from a Chef Databag
|
|
description:
|
|
- 'This is a lookup plugin to provide access to chef data bags using the pychef package. It interfaces with the chef server
|
|
API using the same methods to find a knife or chef-client config file to load parameters from, starting from either the
|
|
given base path or the current working directory. The lookup order mirrors the one from Chef, all folders in the base
|
|
path are walked back looking for the following configuration file in order: C(.chef/knife.rb), C(~/.chef/knife.rb), C(/etc/chef/client.rb).'
|
|
requirements:
|
|
- "pychef (L(Python library, https://pychef.readthedocs.io), C(pip install pychef))"
|
|
options:
|
|
name:
|
|
description:
|
|
- Name of the databag.
|
|
type: string
|
|
required: true
|
|
item:
|
|
description:
|
|
- Item to fetch.
|
|
type: string
|
|
required: true
|
|
"""
|
|
|
|
EXAMPLES = r"""
|
|
- ansible.builtin.debug:
|
|
msg: "{{ lookup('community.general.chef_databag', 'name=data_bag_name item=data_bag_item') }}"
|
|
"""
|
|
|
|
RETURN = r"""
|
|
_raw:
|
|
description:
|
|
- The value from the databag.
|
|
type: list
|
|
elements: dict
|
|
"""
|
|
|
|
from ansible.errors import AnsibleError
|
|
from ansible.plugins.lookup import LookupBase
|
|
from ansible.parsing.splitter import parse_kv
|
|
|
|
try:
|
|
import chef
|
|
HAS_CHEF = True
|
|
except ImportError as missing_module:
|
|
HAS_CHEF = False
|
|
|
|
|
|
class LookupModule(LookupBase):
|
|
"""
|
|
Chef data bag lookup module
|
|
"""
|
|
def __init__(self, loader=None, templar=None, **kwargs):
|
|
|
|
super(LookupModule, self).__init__(loader, templar, **kwargs)
|
|
|
|
# setup vars for data bag name and data bag item
|
|
self.name = None
|
|
self.item = None
|
|
|
|
def parse_kv_args(self, args):
|
|
"""
|
|
parse key-value style arguments
|
|
"""
|
|
|
|
for arg in ["name", "item"]:
|
|
try:
|
|
arg_raw = args.pop(arg, None)
|
|
if arg_raw is None:
|
|
continue
|
|
parsed = str(arg_raw)
|
|
setattr(self, arg, parsed)
|
|
except ValueError:
|
|
raise AnsibleError(
|
|
f"can't parse arg {arg}={arg_raw} as string"
|
|
)
|
|
if args:
|
|
raise AnsibleError(
|
|
f"unrecognized arguments to with_sequence: {list(args.keys())!r}"
|
|
)
|
|
|
|
def run(self, terms, variables=None, **kwargs):
|
|
# Ensure pychef has been loaded
|
|
if not HAS_CHEF:
|
|
raise AnsibleError('PyChef needed for lookup plugin, try `pip install pychef`')
|
|
|
|
for term in terms:
|
|
self.parse_kv_args(parse_kv(term))
|
|
|
|
api_object = chef.autoconfigure()
|
|
|
|
if not isinstance(api_object, chef.api.ChefAPI):
|
|
raise AnsibleError('Unable to connect to Chef Server API.')
|
|
|
|
data_bag_object = chef.DataBag(self.name)
|
|
|
|
data_bag_item = data_bag_object[self.item]
|
|
|
|
return [dict(data_bag_item)]
|