File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 with_items :
1010 - " /opt/openconext/manage/metadata_configuration"
1111 - " /opt/openconext/manage/metadata_templates"
12+ - " /opt/openconext/manage/policies"
1213
1314- name : Import the mongo CA file
1415 ansible.builtin.copy :
7273 notify :
7374 - " restart manageserver"
7475
76+ - name : copy policies configuration
77+ copy :
78+ src : " policies/{{ item }}"
79+ dest : " /opt/openconext/manage/policies/{{ item }}"
80+ owner : root
81+ group : root
82+ mode : " 0640"
83+ with_items :
84+ - allowed_attributes.json
85+ - extra_saml_attributes.json
86+ notify :
87+ - " restart manageserver"
88+
7589- name : Add the mongodb and mariadb docker network to the list of networks when MongoDB runs in Docker
7690 ansible.builtin.set_fact :
7791 manage_docker_networks :
Original file line number Diff line number Diff line change @@ -68,12 +68,17 @@ security:
6868 api_users_config_path: file://{{ manage_dir }}/manage-api-users.yml
6969 super_user_attribute_name: {{ manage_super_user_attribute_name }}
7070 super_user_values: {{ manage.super_user_team_names }}
71-
71+
7272crypto:
7373 development-mode: False
7474 public-key-location: file://{{ manage_dir }}/public_invite_key.pem
7575 enabled: {{ manage.crypto_enabled }}
7676
77+ # Can also be a file system resource like file://{{ manage_dir }}/policies/allowed_attributes.json
78+ policies:
79+ allowed_attributes: file://{{ manage_dir }}/policies/allowed_attributes.json
80+ extra_saml_attributes: file://{{ manage_dir }}/policies/extra_saml_attributes.json
81+
7782spring:
7883 mail:
7984 host: {{ smtp_server }}
You can’t perform that action at this time.
0 commit comments