File tree Expand file tree Collapse file tree 1 file changed +14
-13
lines changed
roles/configure_ssh_client_signer/tasks Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Original file line number Diff line number Diff line change 3232 {%- for name, options in bbcrd_vault_ssh_client_signer_roles.items() -%}
3333 {%- set options = bbcrd_vault_configure_ssh_client_signer_default_role_options | combine(options) -%}
3434 {%-
35- set _ = roles.__setitem__(
36- name,
35+ set _ = roles.update(
3736 {
38- "key_type": "ca",
39- "allow_user_certificates": True,
40- "algorithm_signer": options["algorithm"],
41- "default_user": options["users"] | join(","),
42- "allowed_users": options["users"] | join(","),
43- "default_extensions": (
44- options["extensions"]
45- | bbcrd.vault.vault_ssh_allowed_extensions_dict
46- ),
47- "ttl": options["ttl"],
48- "max_ttl": options["ttl"],
37+ name: {
38+ "key_type": "ca",
39+ "allow_user_certificates": True,
40+ "algorithm_signer": options["algorithm"],
41+ "default_user": options["users"] | join(","),
42+ "allowed_users": options["users"] | join(","),
43+ "default_extensions": (
44+ options["extensions"]
45+ | bbcrd.vault.vault_ssh_allowed_extensions_dict
46+ ),
47+ "ttl": options["ttl"],
48+ "max_ttl": options["ttl"],
49+ }
4950 }
5051 )
5152 -%}
You can’t perform that action at this time.
0 commit comments