-
Notifications
You must be signed in to change notification settings - Fork 55
[MOSIP-37808] Updated DB attributes of MOSIP for audit service #269
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -1,17 +1,16 @@ | ||
| CREATE DATABASE mosip_audit | ||
| ENCODING = 'UTF8' | ||
| LC_COLLATE = 'en_US.UTF-8' | ||
| LC_CTYPE = 'en_US.UTF-8' | ||
| TABLESPACE = pg_default | ||
| CREATE DATABASE :mosipdbname | ||
| ENCODING = 'UTF8' | ||
| LC_COLLATE = 'en_US.UTF-8' | ||
| LC_CTYPE = 'en_US.UTF-8' | ||
| TABLESPACE = pg_default | ||
| OWNER = postgres | ||
| TEMPLATE = template0; | ||
|
|
||
| COMMENT ON DATABASE mosip_audit IS 'Audit related logs and the data is stored in this database'; | ||
| COMMENT ON DATABASE :mosipdbname IS 'Audit related logs and the data is stored in this database'; | ||
|
|
||
| \c mosip_audit postgres | ||
| \c :mosipdbname postgres | ||
|
|
||
| DROP SCHEMA IF EXISTS audit CASCADE; | ||
| CREATE SCHEMA audit; | ||
| ALTER SCHEMA audit OWNER TO postgres; | ||
| ALTER DATABASE mosip_audit SET search_path TO audit,pg_catalog,public; | ||
|
|
||
| ALTER DATABASE :mosipdbname SET search_path TO audit,pg_catalog,public; | ||
This file contains hidden or 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 |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| \c mosip_audit postgres | ||
| \c :mosipdbname postgres | ||
|
|
||
| \ir ddl/audit-app_audit_log.sql | ||
|
|
||
|
|
||
|
|
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -3,4 +3,5 @@ DB_PORT= | |
| SU_USER= | ||
| DEFAULT_DB_NAME=postgres | ||
| MOSIP_DB_NAME=mosip_audit | ||
| DB_UNAME=audituser | ||
| DML_FLAG=0 | ||
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
| @@ -1,2 +1 @@ | ||
| DROP DATABASE IF EXISTS mosip_audit; | ||
|
|
||
| DROP DATABASE IF EXISTS :mosipdbname; |
This file contains hidden or 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 |
|---|---|---|
| @@ -1 +1 @@ | ||
| drop role if exists audituser; | ||
| drop role if exists :dbuname; |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,17 +1,16 @@ | ||
| \c mosip_audit | ||
| \c :mosipdbname | ||
|
|
||
| GRANT CONNECT | ||
| ON DATABASE mosip_audit | ||
| ON DATABASE :mosipdbname | ||
| TO audituser; | ||
|
abhishek8shankar marked this conversation as resolved.
|
||
|
|
||
| GRANT USAGE | ||
| ON SCHEMA audit | ||
| TO audituser; | ||
| TO :dbuname; | ||
|
|
||
| GRANT SELECT,INSERT,UPDATE,DELETE,TRUNCATE,REFERENCES | ||
| ON ALL TABLES IN SCHEMA audit | ||
| TO audituser; | ||
|
|
||
| ALTER DEFAULT PRIVILEGES IN SCHEMA audit | ||
| GRANT SELECT,INSERT,UPDATE,DELETE,REFERENCES ON TABLES TO audituser; | ||
| ON ALL TABLES IN SCHEMA audit | ||
| TO :dbuname; | ||
|
|
||
| ALTER DEFAULT PRIVILEGES IN SCHEMA audit | ||
| GRANT SELECT,INSERT,UPDATE,DELETE,REFERENCES ON TABLES TO :dbuname; | ||
This file contains hidden or 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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| CREATE ROLE audituser WITH | ||
| INHERIT | ||
| LOGIN | ||
| PASSWORD :dbuserpwd; | ||
| CREATE ROLE :dbuname WITH | ||
| INHERIT | ||
| LOGIN | ||
| PASSWORD :dbuserpwd; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.