diff options
author | Daniel Hanrahan <daniel.hanrahan@est.tech> | 2024-04-30 14:50:15 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-04-30 14:50:15 +0000 |
commit | 88593ad12db28933558fc3f781052a8548852d17 (patch) | |
tree | 319114fdf01da42fdce8242d9fa93574c1da5fbc | |
parent | 1e5290cd5e69960d48fb20d56fafb4eef54d5f34 (diff) | |
parent | 86dd13916f8e1ec3b9ac981c19913ddad89dc343 (diff) |
Merge "[BUG]Defaults for cps and dmi user and pass"
-rw-r--r-- | cps-application/src/main/resources/application.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cps-application/src/main/resources/application.yml b/cps-application/src/main/resources/application.yml index 27bc6c6189..7873cc459c 100644 --- a/cps-application/src/main/resources/application.yml +++ b/cps-application/src/main/resources/application.yml @@ -144,8 +144,8 @@ security: # comma-separated uri patterns which do not require authorization permit-uri: /actuator/**,/swagger-ui.html,/swagger-ui/**,/swagger-resources/**,/api-docs/**,/v3/api-docs/** auth: - username: ${CPS_USERNAME} - password: ${CPS_PASSWORD} + username: ${CPS_USERNAME:cpsuser} + password: ${CPS_PASSWORD:cpsr0cks!} # Actuator management: @@ -175,8 +175,8 @@ ncmp: maximumConnectionsTotal: 100 idleConnectionEvictionThresholdInSeconds: 5 auth: - username: ${DMI_USERNAME} - password: ${DMI_PASSWORD} + username: ${DMI_USERNAME:cpsuser} + password: ${DMI_PASSWORD:cpsr0cks!} enabled: ${DMI_AUTH_ENABLED:true} api: base-path: dmi |