3
votes
1answer
710 views
What’s the best method for passing AWS credentials as user data to an EC2 instance?
I have a job processing architecture based on AWS that requires EC2 instances query S3 and SQS. In order for running instances to have access to the API the credentials are sent as user data (-f) …
0
votes
1
vote
EC2 non root user login
Make sure you are sending your AWS keypair as the identity file, i.e.
ssh -i ~/.ssh/keypair.pem user@ec2-174-129-xxx-xx.compute-1.amazonaws.com
Also check that SSH …
