Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: #885 fix admin management db username in flyway #1051

Merged
merged 18 commits into from
Nov 24, 2023
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
b592bed
feat(885): added create application method, add both coding pattern f…
MCatherine1994 Nov 17, 2023
79474e0
cleanup(885): remove crud methods, refs: #885
MCatherine1994 Nov 20, 2023
808ef37
feat(885): add deletion endpoint for admin management, refs: #885
MCatherine1994 Nov 20, 2023
e975a64
feat(885): add get endpooint for admin manageent, refs: #885
MCatherine1994 Nov 20, 2023
90b6826
feat(885): add audit log for creating and deleting application admin,…
MCatherine1994 Nov 21, 2023
345af3f
feat(885): remove get admin by user, add get admin by app, refs: #885
MCatherine1994 Nov 21, 2023
6ff37ae
cleanup(885): remove unused endpoint, refs: #885
MCatherine1994 Nov 21, 2023
63a419e
fix(885): merge audit if statement to solve code smell, refs: #885
MCatherine1994 Nov 21, 2023
2c04b74
Merge branch 'main' of https://github.com/bcgov/nr-forests-access-man…
MCatherine1994 Nov 21, 2023
95ebcfe
fix(885): fix username str constrains, refs: #885
MCatherine1994 Nov 21, 2023
940feb2
cleanup(885): remove unused method, refs: #885
MCatherine1994 Nov 21, 2023
896f73c
cleanup(885): cleanup code fix comments, logs, refs: #885
MCatherine1994 Nov 22, 2023
369f55c
feat(885): add router guard to check if application admin id exists, …
MCatherine1994 Nov 23, 2023
f681311
feat(885): add router guard to check application exists, refs: #885
MCatherine1994 Nov 23, 2023
0903746
fix(885): fix router guard method need to be async, refs: #885
MCatherine1994 Nov 23, 2023
497f474
fix(885): rename router guard method, refs: #885
MCatherine1994 Nov 23, 2023
c4237ce
fix(885): fix db credential name for admin management, as it is alrea…
MCatherine1994 Nov 24, 2023
9db3807
Merge branch 'main' of https://github.com/bcgov/nr-forests-access-man…
MCatherine1994 Nov 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion infrastructure/server/aurora-v2.tf
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ resource "random_password" "famdb_admin_management_api_password" {
variable "famdb_admin_management_api_username" {
description = "The username for the DB admin management api user"
type = string
default = "fam_admin_management_api"
default = "fam_proxy_admin_management_api"
sensitive = true
}

Expand Down