Can Intellij IDE override parameters from script result?
Answered
We have our Java application loading properties like DB URL, username, and password from AWS Secrets. This works in PROD, STAGE, and TEST using AWS policy profiles. The developers need to load their AWS access keys into Intellij in the "Run/Debug Configurations" options for "Override parameters", each developer needs to manually configure this page with their values.
I would like to be able to load these values from a call to a program like ''aws configure get aws_access_key_id''. This would simplify the configuration of the development environment without risking exposing keys to others.
Is there any way to do this?
Please sign in to leave a comment.
No, it's not possible. You could probably create a plug-in for that.