Skip to content

Commit

Permalink
Enclose {noop}secret passwords
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Jun 7, 2024
1 parent a9ddd29 commit fded101
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ security:
api:
lifecycle:
username: {{ attribute_aggregator_api_lifecycle_username }}
password: {{ attribute_aggregator_api_lifecycle_password }}
password: "{{ attribute_aggregator_api_lifecycle_password }}"

pseudo:
mail_postfix: {{ attribute_aggregation_pseudo_mail_postfix }}
Expand Down
2 changes: 1 addition & 1 deletion roles/invite/templates/mockapplication.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spring:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://{{ invite.db_host }}/invite
username: {{ invite.db_user }}
password: {{ invite.db_secret }}
password: "{{ invite.db_secret }}"

server:
port: 8081
Expand Down
8 changes: 4 additions & 4 deletions roles/manage-server/templates/application.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ push:
url: https://connect.{{ base_domain }}/manage/connections
user: manage
name: {{ manage.oidcng_name }}
password: {{ oidcng_api_metadata_push_password }}
password: "{{ oidcng_api_metadata_push_password }}"
enabled: {{ manage.oidc_push_enabled }}
pdp:
url: https://pdp.{{ base_domain }}/pdp/api/manage/push
policy_url: https://pdp.{{ base_domain }}/pdp/api/manage/policies
decide_url: https://pdp.{{ base_domain }}/pdp/api/manage/decide
name: {{ manage.pdp_name }}
user: {{ pdp.username }}
password: {{ pdp.password }}
password: "{{ pdp.password }}"

product:
name: Manage
Expand All @@ -61,7 +61,7 @@ metadata_templates_path: file://{{ manage_dir }}/metadata_templates

security:
backdoor_user_name: {{ manage.backdoor_api_user }}
backdoor_password: {{ manage_backdoor_api_password }}
backdoor_password: "{{ manage_backdoor_api_password }}"
api_users_config_path: file://{{ manage_dir }}/manage-api-users.yml
super_user_team_names: {{ manage.super_user_team_names }}

Expand All @@ -79,7 +79,7 @@ spring:
datasource:
url: jdbc:mysql://{{ pdp.db_host }}/{{ pdp.db_name }}?permitMysqlScheme
username: {{ pdp.db_user }}
password: {{ pdp.db_password }}
password: "{{ pdp.db_password }}"
driverClassName: org.mariadb.jdbc.Driver
main:
banner-mode: "off"
Expand Down
2 changes: 1 addition & 1 deletion roles/myconext/templates/application.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ external-api-configuration:
oidc-token-api:
token-url: https://connect.{{ base_domain }}/tokens
user: eduid
password: {{ oidcng_api_tokens_eduid_password }}
password: "{{ oidcng_api_tokens_eduid_password }}"
enabled: {{ oidcng.token_api_enabled }}

oidc:
Expand Down
4 changes: 2 additions & 2 deletions roles/teams/templates/serverapplication.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ logging:
api:
lifecycle:
username: {{ teams_api_lifecycle_username }}
password: {{ teams_api_lifecycle_password }}
password: "{{ teams_api_lifecycle_password }}"

secure_cookie: true

Expand Down Expand Up @@ -41,7 +41,7 @@ features:
security:
user:
name: {{ teams.voot_api_user }}
password: {{ external_group_provider_secrets.teams }}
password: "{{ external_group_provider_secrets.teams }}"

sp_dashboard:
user-name: {{ teams.spdashboard_api_user }}
Expand Down

0 comments on commit fded101

Please sign in to comment.