How to connect AWS account












-1















Its really fanny question but I wanted to know about this. So question is, I have successfully created one AWS account and now I want to connect with this account without EC2 launch.



is it possible using AWS key? If yes, can someone help on this?
Reason I want to do this , because I want to launch my first EC2 instance using ansible provisioning.



Thanks










share|improve this question

























  • Please clarify your question i couldn't understand your question

    – varnit
    Jan 1 at 18:44
















-1















Its really fanny question but I wanted to know about this. So question is, I have successfully created one AWS account and now I want to connect with this account without EC2 launch.



is it possible using AWS key? If yes, can someone help on this?
Reason I want to do this , because I want to launch my first EC2 instance using ansible provisioning.



Thanks










share|improve this question

























  • Please clarify your question i couldn't understand your question

    – varnit
    Jan 1 at 18:44














-1












-1








-1








Its really fanny question but I wanted to know about this. So question is, I have successfully created one AWS account and now I want to connect with this account without EC2 launch.



is it possible using AWS key? If yes, can someone help on this?
Reason I want to do this , because I want to launch my first EC2 instance using ansible provisioning.



Thanks










share|improve this question
















Its really fanny question but I wanted to know about this. So question is, I have successfully created one AWS account and now I want to connect with this account without EC2 launch.



is it possible using AWS key? If yes, can someone help on this?
Reason I want to do this , because I want to launch my first EC2 instance using ansible provisioning.



Thanks







amazon-web-services ansible






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 2 at 8:54









Quentin Revel

79038




79038










asked Jan 1 at 15:33









Still LearningStill Learning

5403829




5403829













  • Please clarify your question i couldn't understand your question

    – varnit
    Jan 1 at 18:44



















  • Please clarify your question i couldn't understand your question

    – varnit
    Jan 1 at 18:44

















Please clarify your question i couldn't understand your question

– varnit
Jan 1 at 18:44





Please clarify your question i couldn't understand your question

– varnit
Jan 1 at 18:44












1 Answer
1






active

oldest

votes


















0














Not sure what your question is so I'll provide a broad answer.



Here are the different ways of interaction with AWS




  • The AWS root account (email / password) that allows you to connect to the AWS console with full access over your AWS account


  • AWS IAM user that allows you to give specific restricted access to your AWS account. IAM users can either connect to the AWS console or programmatically with API keys

  • SSH Login to EC2 instances you created directly or with a managed service like ECS,EKS,Beanstalk...


You can find additional information on AWS docs.



What I would recommend if you want to manage everyting in ansible (long live infrastructure as code) is to manage the EC2 lifecyle through ansible. You only need to provide API keys of an IAM user that as sufficient access in AWS in order to create an EC2 with ansible. You can then provision the created EC2 with ansible too.






share|improve this answer
























  • Hi Quentin, as you explained in your answer I know all three points. First two point just open the amazon console and connect with registered email or any user account. But my question is, Is it possible to connect with SSH client with launching EC2 instance. Can I connect with user root account/user account from SSH client. Reason for this I want to launch my first EC2 instance with some provisioning tool.

    – Still Learning
    Jan 2 at 16:02











  • Sorry, i don't understand the question, you want to make API calls to AWS from an EC2 instance or from your own local computer?

    – Quentin Revel
    Jan 2 at 16:46











  • From my local computer using SSH client putty.

    – Still Learning
    Jan 3 at 13:39











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53996694%2fhow-to-connect-aws-account%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














Not sure what your question is so I'll provide a broad answer.



Here are the different ways of interaction with AWS




  • The AWS root account (email / password) that allows you to connect to the AWS console with full access over your AWS account


  • AWS IAM user that allows you to give specific restricted access to your AWS account. IAM users can either connect to the AWS console or programmatically with API keys

  • SSH Login to EC2 instances you created directly or with a managed service like ECS,EKS,Beanstalk...


You can find additional information on AWS docs.



What I would recommend if you want to manage everyting in ansible (long live infrastructure as code) is to manage the EC2 lifecyle through ansible. You only need to provide API keys of an IAM user that as sufficient access in AWS in order to create an EC2 with ansible. You can then provision the created EC2 with ansible too.






share|improve this answer
























  • Hi Quentin, as you explained in your answer I know all three points. First two point just open the amazon console and connect with registered email or any user account. But my question is, Is it possible to connect with SSH client with launching EC2 instance. Can I connect with user root account/user account from SSH client. Reason for this I want to launch my first EC2 instance with some provisioning tool.

    – Still Learning
    Jan 2 at 16:02











  • Sorry, i don't understand the question, you want to make API calls to AWS from an EC2 instance or from your own local computer?

    – Quentin Revel
    Jan 2 at 16:46











  • From my local computer using SSH client putty.

    – Still Learning
    Jan 3 at 13:39
















0














Not sure what your question is so I'll provide a broad answer.



Here are the different ways of interaction with AWS




  • The AWS root account (email / password) that allows you to connect to the AWS console with full access over your AWS account


  • AWS IAM user that allows you to give specific restricted access to your AWS account. IAM users can either connect to the AWS console or programmatically with API keys

  • SSH Login to EC2 instances you created directly or with a managed service like ECS,EKS,Beanstalk...


You can find additional information on AWS docs.



What I would recommend if you want to manage everyting in ansible (long live infrastructure as code) is to manage the EC2 lifecyle through ansible. You only need to provide API keys of an IAM user that as sufficient access in AWS in order to create an EC2 with ansible. You can then provision the created EC2 with ansible too.






share|improve this answer
























  • Hi Quentin, as you explained in your answer I know all three points. First two point just open the amazon console and connect with registered email or any user account. But my question is, Is it possible to connect with SSH client with launching EC2 instance. Can I connect with user root account/user account from SSH client. Reason for this I want to launch my first EC2 instance with some provisioning tool.

    – Still Learning
    Jan 2 at 16:02











  • Sorry, i don't understand the question, you want to make API calls to AWS from an EC2 instance or from your own local computer?

    – Quentin Revel
    Jan 2 at 16:46











  • From my local computer using SSH client putty.

    – Still Learning
    Jan 3 at 13:39














0












0








0







Not sure what your question is so I'll provide a broad answer.



Here are the different ways of interaction with AWS




  • The AWS root account (email / password) that allows you to connect to the AWS console with full access over your AWS account


  • AWS IAM user that allows you to give specific restricted access to your AWS account. IAM users can either connect to the AWS console or programmatically with API keys

  • SSH Login to EC2 instances you created directly or with a managed service like ECS,EKS,Beanstalk...


You can find additional information on AWS docs.



What I would recommend if you want to manage everyting in ansible (long live infrastructure as code) is to manage the EC2 lifecyle through ansible. You only need to provide API keys of an IAM user that as sufficient access in AWS in order to create an EC2 with ansible. You can then provision the created EC2 with ansible too.






share|improve this answer













Not sure what your question is so I'll provide a broad answer.



Here are the different ways of interaction with AWS




  • The AWS root account (email / password) that allows you to connect to the AWS console with full access over your AWS account


  • AWS IAM user that allows you to give specific restricted access to your AWS account. IAM users can either connect to the AWS console or programmatically with API keys

  • SSH Login to EC2 instances you created directly or with a managed service like ECS,EKS,Beanstalk...


You can find additional information on AWS docs.



What I would recommend if you want to manage everyting in ansible (long live infrastructure as code) is to manage the EC2 lifecyle through ansible. You only need to provide API keys of an IAM user that as sufficient access in AWS in order to create an EC2 with ansible. You can then provision the created EC2 with ansible too.







share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 1 at 17:05









Quentin RevelQuentin Revel

79038




79038













  • Hi Quentin, as you explained in your answer I know all three points. First two point just open the amazon console and connect with registered email or any user account. But my question is, Is it possible to connect with SSH client with launching EC2 instance. Can I connect with user root account/user account from SSH client. Reason for this I want to launch my first EC2 instance with some provisioning tool.

    – Still Learning
    Jan 2 at 16:02











  • Sorry, i don't understand the question, you want to make API calls to AWS from an EC2 instance or from your own local computer?

    – Quentin Revel
    Jan 2 at 16:46











  • From my local computer using SSH client putty.

    – Still Learning
    Jan 3 at 13:39



















  • Hi Quentin, as you explained in your answer I know all three points. First two point just open the amazon console and connect with registered email or any user account. But my question is, Is it possible to connect with SSH client with launching EC2 instance. Can I connect with user root account/user account from SSH client. Reason for this I want to launch my first EC2 instance with some provisioning tool.

    – Still Learning
    Jan 2 at 16:02











  • Sorry, i don't understand the question, you want to make API calls to AWS from an EC2 instance or from your own local computer?

    – Quentin Revel
    Jan 2 at 16:46











  • From my local computer using SSH client putty.

    – Still Learning
    Jan 3 at 13:39

















Hi Quentin, as you explained in your answer I know all three points. First two point just open the amazon console and connect with registered email or any user account. But my question is, Is it possible to connect with SSH client with launching EC2 instance. Can I connect with user root account/user account from SSH client. Reason for this I want to launch my first EC2 instance with some provisioning tool.

– Still Learning
Jan 2 at 16:02





Hi Quentin, as you explained in your answer I know all three points. First two point just open the amazon console and connect with registered email or any user account. But my question is, Is it possible to connect with SSH client with launching EC2 instance. Can I connect with user root account/user account from SSH client. Reason for this I want to launch my first EC2 instance with some provisioning tool.

– Still Learning
Jan 2 at 16:02













Sorry, i don't understand the question, you want to make API calls to AWS from an EC2 instance or from your own local computer?

– Quentin Revel
Jan 2 at 16:46





Sorry, i don't understand the question, you want to make API calls to AWS from an EC2 instance or from your own local computer?

– Quentin Revel
Jan 2 at 16:46













From my local computer using SSH client putty.

– Still Learning
Jan 3 at 13:39





From my local computer using SSH client putty.

– Still Learning
Jan 3 at 13:39




















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53996694%2fhow-to-connect-aws-account%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Mossoró

Error while reading .h5 file using the rhdf5 package in R

Pushsharp Apns notification error: 'InvalidToken'