-
Notifications
You must be signed in to change notification settings - Fork 436
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ice ignoring credentials in ice.properties on EC2 instance #49
Comments
@rfein-h As specified in readme, ice.s3AccessKeyId and ice.s3SecretKey need to be set as runtime parameters. They should not be defined in ice.properties file. Thanks |
@fangji Is there a reason why they can't be defined in ice.properties? That would be a neat way to hide them if you're not using AWS instance metadata. If you pass them as runtime java parameters any user able to list the running processes will be able to see the credentials, it's usually not best practice to pass sensitive data in command line options precisely because of this. Thanks, |
@nmcserra The idea is that you don't need to specify aws credentials while running Ice in the cloud. Providing the option to specify credentials as runtime parameters is only to enable people debugging/running ice on their local desktop. |
some of us run ice outside of aws, oddly enough. this is problematic because it means that your keys will be visible to anyone who can see the task's command line (i.e. anyone on the box) |
I just created a quick and dirty fix here - nyetsche@e6eb58f I didn't add a pull request because I just ignored the Otherwise, there's a quick solution if you want to keep your credentials in that file. |
@fangji The documentation (https://github.com/Netflix/ice#basic-setup) says: 1.4 If running locally, set the following system properties at runtime. ice.s3AccessToken is optional.
I think it's a valid assumption that these will work if not running "locally" as well... at the least, this could be made more clear in the docs. |
I'm having an issue where I set ice.s3AccessKeyId and ice.s3SecretKey in the ice.properties file, but on startup it attempts to use an IAM role anyhow.
if I pass those properties on at startup with -D, it works as expected.
The text was updated successfully, but these errors were encountered: