forked from Sunbird-Lern/sunbird-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue Sunbird-Lern#24 chore:Sunbird auth package build
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
keycloak/scripts/ansible/roles/keycloak/tasks/build-conf.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
- name: Create directory for sunbird auth package config | ||
file: | ||
path: sunbird_auth_{{sunbird_auth_version}}.config | ||
state: directory | ||
mode: 0755 | ||
|
||
- name: Keycloak configuration XML file | ||
template: | ||
src:"roles/keycloak/templates/templates/standalone-ha.xml" | ||
dest:"sunbird_auth_{{sunbird_auth_version}}.config/standalone-ha.xml" | ||
mode:0750 | ||
|
||
- name: Postgresql Configuration- module.xml | ||
template: | ||
src:"roles/keycloak/templates/templates/module.xml.j2" | ||
dest:"sunbird_auth_{{sunbird_auth_version}}.config/module.xml" | ||
mode:0750 | ||
|
||
- name: SMS provider configuration file | ||
template: | ||
src:"roles/keycloak/templates/templates/Msg91Creds.json.j2" | ||
dest:"sunbird_auth_{{sunbird_auth_version}}.config/Msg91Creds.json" | ||
mode:0755 |