Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
May i know if there is a way to store AWS credentials in Windows Environment Variables and access them in Talend Studio? Will like to avoid directly storing AWS credentials in Talend. Thanks!
Yes, I have access the "JAVA_HOME" environment variable using below method in tJava.
String java_home = System.getenv("JAVA_HOME");
System.out.println(java_home);
You can create the S3 variable and call them using same way.
Yes, I have access the "JAVA_HOME" environment variable using below method in tJava.
String java_home = System.getenv("JAVA_HOME");
System.out.println(java_home);
You can create the S3 variable and call them using same way.
Thank you for your prompt response! Will try it out.
Works like a charm! I like how simple the solution is. using this alone System.getenv("Env Variable") works for me. Thanks!
Glad it worked.. 😉