Where is the configuration saved?
Since version 2.1, the configuration is saved in the database in the AO_F58FCA_ALBA_CONFIG table. Every time a change is saved, this is written as a new entry to the table. Additionally, we save when the change was done and who did the change.
You can use the following query to access the table
- select * from "AO_F58FCA_ALBA_CONFIG"
The table consists of the following columns:
CONFIGURATION_STRING: the AWS configuration as a serialized JSON string
ID: the id of the entry. Every time the config gets saved, a new id is generated and a new entry is created
LAST_MODIFIED_BY: The username of the user who did the change
LAST_UPDATED: Unix timestamp of when the config was saved
VERSION: Internal version of the configuration. This allows for our downgrade and upgrade mechanism