88 lines
3.1 KiB
Python
88 lines
3.1 KiB
Python
# Copyright: (c) 2020, Felix Fontein <felix@fontein.de>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
from os import path, walk
|
|
import re
|
|
|
|
from ansible.module_utils.common.validation import check_type_bool, check_type_str
|
|
from ansible.module_utils.common._collections_compat import Sequence, Mapping
|
|
from ansible.module_utils.six import iteritems, string_types
|
|
from ansible.module_utils.common.text.converters import to_native, to_text
|
|
from ansible.plugins.action import ActionBase
|
|
from ansible.utils.display import Display
|
|
|
|
from ansible_collections.community.sops.plugins.module_utils.sops import Sops, SopsError, get_sops_argument_spec
|
|
|
|
from ansible_collections.community.sops.plugins.plugin_utils.action_module import ActionModuleBase, ArgumentSpec
|
|
|
|
display = Display()
|
|
|
|
|
|
class ActionModule(ActionModuleBase):
|
|
|
|
def _load(self, filename, module):
|
|
def get_option_value(argument_name):
|
|
return module.params.get(argument_name)
|
|
|
|
output = Sops.decrypt(filename, display=display, get_option_value=get_option_value)
|
|
|
|
data = self._loader.load(output, file_name=filename, show_content=False)
|
|
if not data:
|
|
data = dict()
|
|
if not isinstance(data, dict):
|
|
# Should not happen with sops-encrypted files
|
|
raise Exception('{0} must be stored as a dictionary/hash'.format(to_native(filename)))
|
|
return data
|
|
|
|
def _evaluate(self, value):
|
|
if isinstance(value, string_types):
|
|
# must come *before* Sequence, as strings are also instances of Sequence
|
|
return self._templar.template(value)
|
|
if isinstance(value, Sequence):
|
|
return [self._evaluate(v) for v in value]
|
|
if isinstance(value, Mapping):
|
|
return dict((k, self._evaluate(v)) for k, v in iteritems(value))
|
|
return value
|
|
|
|
@staticmethod
|
|
def setup_module():
|
|
argument_spec = ArgumentSpec(
|
|
argument_spec=dict(
|
|
file=dict(type='path', required=True),
|
|
name=dict(type='str'),
|
|
expressions=dict(type='str', default='ignore', choices=['ignore', 'evaluate-on-load']),
|
|
),
|
|
)
|
|
argument_spec.argument_spec.update(get_sops_argument_spec())
|
|
return argument_spec, {}
|
|
|
|
def run_module(self, module):
|
|
data = dict()
|
|
files = []
|
|
try:
|
|
filename = self._find_needle('vars', module.params['file'])
|
|
data.update(self._load(filename, module))
|
|
files.append(filename)
|
|
except Exception as e:
|
|
module.fail_json(msg=to_native(e))
|
|
|
|
name = module.params['name']
|
|
if name is None:
|
|
value = data
|
|
else:
|
|
value = dict()
|
|
value[name] = data
|
|
|
|
expressions = module.params['expressions']
|
|
if expressions == 'evaluate-on-load':
|
|
value = self._evaluate(value)
|
|
|
|
module.exit_json(
|
|
ansible_included_var_files=files,
|
|
ansible_facts=value,
|
|
_ansible_no_log=True,
|
|
)
|