diff options
Diffstat (limited to 'src/config.rs')
-rw-r--r-- | src/config.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs index 47db90d..d756d6e 100644 --- a/src/config.rs +++ b/src/config.rs @@ -25,10 +25,13 @@ pub struct LoginStaticConfig { #[derive(Deserialize, Debug, Clone)] pub struct LoginStaticUser { pub password: String, + pub aws_access_key_id: String, pub aws_secret_access_key: String, pub bucket: Option<String>, + pub master_key: Option<String>, + pub secret_key: Option<String>, } #[derive(Deserialize, Debug, Clone)] |