Skip to content
Snippets Groups Projects
Commit 600115f9 authored by Mathieu Leguay's avatar Mathieu Leguay
Browse files

[DEVOPS] Fix missing deployment for customer-init.yml

parent d4035c67
No related branches found
No related tags found
1 merge request!1Feature/design/1
# This configuration file indicates profiles , profiles groups and users automatically create when a new customer or customer tenant is created.
# Put as many as you want following the template given
customer-init:
# Default profiles for each customer created
profiles:
#- name: profileName
# description: desc
# level: 1
# app-name: app
# roles:
# - role_1
# - role_2
# - role_3
# ...
# Default profiles groups for each customer created
profiles-groups:
#- name: group1
# description: desc
# level: 2
# profiles:
# - profileName
# ...
# Default users for each customer created
users:
#- last-name: lastName
# first-name: firstName
# profiles-group-name: group1
# level: 1
# email-prefix: a@mail.com
# Default profiles for each tenant created
tenant-profiles:
#- name: profileName
# description: desc
# level: 1
# app-name: app
# roles:
# - role_1
# - role_2
# - role_3
# ...
# Other Default profiles for admin group
admin-profiles:
#- name: profileName
# description: desc
# level: 1
# app-name: app
# roles:
# - role_1
# - role_2
# - role_3
# ...
\ No newline at end of file
......@@ -11,5 +11,17 @@
- vitam_cert is defined
tags:
- update_vitam_configuration
notify:
- restart service
- name: Deploy customer-init.yml
copy:
src: "customer-init.yml"
dest: "{{ vitamui_folder_conf }}/customer-init.yml"
owner: "{{ vitamui_defaults.users.vitamui }}"
group: "{{ vitamui_defaults.users.group }}"
mode: "{{ vitamui_defaults.folder.conf_permission }}"
tags:
- update_vitam_configuration
notify:
- restart service
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment