-
Notifications
You must be signed in to change notification settings - Fork 86
[MOSIP-37808] Updated DB attributes of keymanager #552
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,16 +1,16 @@ | ||
| CREATE DATABASE mosip_keymgr | ||
| 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_keymgr IS 'Key Manager database maintains common / system configurations, data related to key services like encryption, decryption keys, certificates..etc'; | ||
| COMMENT ON DATABASE :mosipdbname IS 'Key Manager database maintains common / system configurations, data related to key services like encryption, decryption keys, certificates..etc'; | ||
|
|
||
| \c mosip_keymgr | ||
| \c :mosipdbname | ||
|
|
||
| DROP SCHEMA IF EXISTS keymgr CASCADE; | ||
| CREATE SCHEMA keymgr; | ||
| ALTER SCHEMA keymgr OWNER TO postgres; | ||
|
|
||
| ALTER DATABASE mosip_keymgr SET search_path TO keymgr,pg_catalog,public; | ||
| ALTER DATABASE :mosipdbname SET search_path TO keymgr,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
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=5432 | |
| SU_USER=postgres | ||
| DEFAULT_DB_NAME=postgres | ||
| MOSIP_DB_NAME=mosip_keymgr | ||
| DB_UNAME=keymgruser | ||
| DML_FLAG=1 | ||
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,5 +1,5 @@ | ||
| \c mosip_keymgr | ||
| \c :mosipdbname | ||
|
|
||
| TRUNCATE TABLE keymgr.key_policy_def cascade ; | ||
|
|
||
| \COPY keymgr.key_policy_def (app_id,key_validity_duration,is_active,cr_by,cr_dtimes,pre_expire_days,access_allowed) FROM './dml/keymgr-key_policy_def.csv' delimiter ',' HEADER csv; | ||
| \COPY keymgr.key_policy_def (app_id,key_validity_duration,is_active,cr_by,cr_dtimes,pre_expire_days,access_allowed) FROM './dml/keymgr-key_policy_def.csv' delimiter ',' HEADER csv; |
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_keymgr; | ||
|
|
||
| DROP DATABASE IF EXISTS :mosipdbname; | ||
|
abhishek8shankar marked this conversation as resolved.
|
||
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 keymgruser; | ||
| 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_keymgr | ||
| \c :mosipdbname | ||
|
|
||
| GRANT CONNECT | ||
| ON DATABASE mosip_keymgr | ||
| TO keymgruser; | ||
| ON DATABASE :mosipdbname | ||
| TO :dbuname; | ||
|
|
||
| GRANT USAGE | ||
| ON SCHEMA keymgr | ||
| TO keymgruser; | ||
| TO :dbuname; | ||
|
|
||
| GRANT SELECT,INSERT,UPDATE,DELETE,TRUNCATE,REFERENCES | ||
| ON ALL TABLES IN SCHEMA keymgr | ||
| TO keymgruser; | ||
|
|
||
| ALTER DEFAULT PRIVILEGES IN SCHEMA keymgr | ||
| GRANT SELECT,INSERT,UPDATE,DELETE,REFERENCES ON TABLES TO keymgruser; | ||
| ON ALL TABLES IN SCHEMA keymgr | ||
| TO :dbuname; | ||
|
|
||
| ALTER DEFAULT PRIVILEGES IN SCHEMA keymgr | ||
| 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 keymgruser 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.