How to connect AWS account
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
add a comment |
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
Please clarify your question i couldn't understand your question
– varnit
Jan 1 at 18:44
add a comment |
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
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
amazon-web-services ansible
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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.
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Please clarify your question i couldn't understand your question
– varnit
Jan 1 at 18:44