Skip to content

Commit

Permalink
Enclose secret's with double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Jul 14, 2024
1 parent 5d1d285 commit 157d758
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions roles/teams/templates/serverapplication.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ features:

security:
user:
name: {{ teams.voot_api_user }}
name: "{{ teams.voot_api_user }}"
password: "{{ external_group_provider_secrets.teams }}"

sp_dashboard:
user-name: {{ teams.spdashboard_api_user }}
password: {{ teams_api_spdashboard_password }}
user-name: "{{ teams.spdashboard_api_user }}"
password: "{{ teams_api_spdashboard_password }}"
person-urn: "{{ teams.spdashboard_person_urn }}"
name: "SP Dashboard"
email: "{{ support_email }}"
Expand Down Expand Up @@ -75,9 +75,9 @@ voot:
scopes: "{{ teams_manage_provision_oidcrp_scopes }}"

invite:
url: https://invite.{{ base_domain }}/api/teams
user: {{ invite.teamsuser}}
password: {{ invite.teamssecret }}
url: "https://invite.{{ base_domain }}/api/teams"
user: "{{ invite.teamsuser}}"
password: "{{ invite.teamssecret }}"

spring:
session:
Expand All @@ -96,7 +96,7 @@ spring:
driver-class-name: org.mariadb.jdbc.Driver
url: jdbc:mysql://{{ teams.db_host }}/{{ teams.db_name }}?useMysqlMetadata=true
username: {{ teams.db_user }}
password: {{ teams.db_password }}
password: "{{ teams.db_password }}"
mail:
host: {{ smtp_server }}
port: 25
Expand Down

0 comments on commit 157d758

Please sign in to comment.