You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I really love the work done here! Is it possible to bundle the AWS settings inside the app for automated distribution ? This would allow to not disclose the AWS credentials and may be useful foe many case scenarios (organization deployment ...) Thank you for looking into this!
The text was updated successfully, but these errors were encountered:
But I think that the best way to achive this is to set the aws credentials through the AWS CLI. You need to add this code after line 54, same file above:
return new Promise<boolean>(resolve => {
resolve(false);
});
In this way you can hide the credentials through the AWS CLI without expose them in the app.
I didn't test the code changes above, try them on a test machine before use the modified app in production.
I will add this feature directly in the app in my free time.
If you want, you can fork the repo and work to add this feature in the app and then submit a pull request.
I my opinion the best way to add this feature is to add an option in the settings page, maybe a checkbox, to give the user the choiche to use exposed credentials or set them through the AWS CLI.
Hi! I really love the work done here! Is it possible to bundle the AWS settings inside the app for automated distribution ? This would allow to not disclose the AWS credentials and may be useful foe many case scenarios (organization deployment ...) Thank you for looking into this!
The text was updated successfully, but these errors were encountered: