Lines Matching refs:sops

7 …  sops_file_does_not_exists: "{{ lookup('community.sops.sops', 'file-does-not-exists.sops.yml') }}"
14 …- "'could not locate file in lookup: file-does-not-exists.sops.yml' in sops_lookup_missing_file.ms…
18 …sops_file_does_not_exists_empty: "{{ lookup('community.sops.sops', 'file-does-not-exists.sops.yml'…
26 - name: Test lookup of non-sops file
28 sops_wrong_file: "{{ lookup('community.sops.sops', 'wrong.yaml') }}"
35 - "'sops metadata not found' in sops_lookup_wrong_file.msg"
39 sops_success: "{{ lookup('community.sops.sops', 'simple.sops.yaml') }}"
50 with_rstrip: "{{ lookup('community.sops.sops', 'rstrip.sops', rstrip=true) }}"
51 without_rstrip: "{{ lookup('community.sops.sops', 'rstrip.sops', rstrip=false) }}"
52 default_rstrip: "{{ lookup('community.sops.sops', 'rstrip.sops') }}"
62 … binary_with_rstrip: "{{ lookup('community.sops.sops', 'binary.sops', rstrip=true, base64=true) }}"
63 …binary_without_rstrip: "{{ lookup('community.sops.sops', 'binary.sops', rstrip=false, base64=true)…
72 hidden_binary: "{{ lookup('community.sops.sops', 'hidden-binary', output_type='binary') }}"
73 …hidden_binary__json: "{{ lookup('community.sops.sops', 'hidden-binary.json', output_type='binary')…
74 …hidden_binary__yaml: "{{ lookup('community.sops.sops', 'hidden-binary.yaml', output_type='binary')…
75 …hidden_binary_yaml: "{{ lookup('community.sops.sops', 'hidden-binary-yaml', input_type='yaml', out…
76 …hidden_binary_yaml__json: "{{ lookup('community.sops.sops', 'hidden-binary-yaml.json', input_type=…
77 …hidden_binary_yaml__yaml: "{{ lookup('community.sops.sops', 'hidden-binary-yaml.yaml', input_type=…
78 …hidden_json: "{{ lookup('community.sops.sops', 'hidden-json', input_type='json', output_type='json…
79 …hidden_json__json: "{{ lookup('community.sops.sops', 'hidden-json.json', input_type='json', output…
80 …hidden_json__yaml: "{{ lookup('community.sops.sops', 'hidden-json.yaml', input_type='json', output…
81 …hidden_yaml: "{{ lookup('community.sops.sops', 'hidden-yaml', input_type='yaml', output_type='yaml…
82 …hidden_yaml__json: "{{ lookup('community.sops.sops', 'hidden-yaml.json', input_type='yaml', output…
83 …hidden_yaml__yaml: "{{ lookup('community.sops.sops', 'hidden-yaml.yaml', input_type='yaml', output…
84 …hidden_json__as_yaml: "{{ lookup('community.sops.sops', 'hidden-json', input_type='json', output_t…
85 …hidden_json__json__as_yaml: "{{ lookup('community.sops.sops', 'hidden-json.json', input_type='json…
86 …hidden_json__yaml__as_yaml: "{{ lookup('community.sops.sops', 'hidden-json.yaml', input_type='json…
87 …hidden_yaml__as_json: "{{ lookup('community.sops.sops', 'hidden-yaml', input_type='yaml', output_t…
88 …hidden_yaml__json__as_json: "{{ lookup('community.sops.sops', 'hidden-yaml.json', input_type='yaml…
89 …hidden_yaml__yaml__as_json: "{{ lookup('community.sops.sops', 'hidden-yaml.yaml', input_type='yaml…
120 - name: Test fake sops binary (lookup parameters)
122 …fake_sops_output: "{{ lookup('community.sops.sops', 'simple.sops.yaml', sops_binary=role_path ~ '/…
123 …ke_sops_output_2: "{{ lookup('community.sops.sops', 'simple.sops.yaml', sops_binary=role_path ~ '/…
124 …ke_sops_output_3: "{{ lookup('community.sops.sops', 'simple.sops.yaml', sops_binary=role_path ~ '/…
128 - fake_sops_output == 'fake sops output'
129 - fake_sops_output_2 == 'fake sops output 2'
130 - fake_sops_output_3 == 'fake sops output 3'
135 sops_binary: "{{ role_path }}/files/fake-sops.sh"
136 - name: Test fake sops binary (Ansible variables, 1/3)
138 fake_sops_output: "{{ lookup('community.sops.sops', 'simple.sops.yaml') }}"
140 # sops_binary: "{{ role_path }}/files/fake-sops.sh"
147 sops_binary: "{{ role_path }}/files/fake-sops-val.sh"
148 - name: Test fake sops binary (Ansible variables, 2/3)
150 fake_sops_output_2: "{{ lookup('community.sops.sops', 'simple.sops.yaml') }}"
152 # sops_binary: "{{ role_path }}/files/fake-sops-val.sh"
159 sops_binary: "{{ role_path }}/files/fake-sops-rep.sh"
160 - name: Test fake sops binary (Ansible variables, 3/3)
162 fake_sops_output_3: "{{ lookup('community.sops.sops', 'simple.sops.yaml') }}"
164 # sops_binary: "{{ role_path }}/files/fake-sops-rep.sh"
172 - fake_sops_output == 'fake sops output'
173 - fake_sops_output_2 == 'fake sops output 2'
174 - fake_sops_output_3 == 'fake sops output 3'