Server IP : 85.214.239.14 / Your IP : 18.216.208.243 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/community/sops/plugins/action/ |
Upload File : |
# Copyright (c) 2020, Felix Fontein <felix@fontein.de> # 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 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 from ansible.utils.display import Display from ansible_collections.community.sops.plugins.module_utils.sops import Sops, 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, )