Finding an AWS account from access key [on hold]Should i use AWS IAM or my root credentials for my webapp...

Is there a hemisphere-neutral way of specifying a season?

What is going on with Captain Marvel's blood colour?

UK: Is there precedent for the governments e-petition site changing the direction of a government decision?

Took a trip to a parallel universe, need help deciphering

Western buddy movie with a supernatural twist where a woman turns into an eagle at the end

Stopping power of mountain vs road bike

Assassin's bullet with mercury

Watching something be written to a file live with tail

How to take photos in burst mode, without vibration?

Why is consensus so controversial in Britain?

Is "remove commented out code" correct English?

Emailing HOD to enhance faculty application

Is it possible to create light that imparts a greater proportion of its energy as momentum rather than heat?

Is it legal for company to use my work email to pretend I still work there?

How can I make my BBEG immortal short of making them a Lich or Vampire?

Why do I get two different answers for this counting problem?

Reserved de-dupe rules

How can I tell someone that I want to be his or her friend?

Could gravitational lensing be used to protect a spaceship from a laser?

Why is it a bad idea to hire a hitman to eliminate most corrupt politicians?

How to draw the figure with four pentagons?

What reasons are there for a Capitalist to oppose a 100% inheritance tax?

How can saying a song's name be a copyright violation?

Where does SFDX store details about scratch orgs?



Finding an AWS account from access key [on hold]


Should i use AWS IAM or my root credentials for my webapp access to S3 bucket?How do I connect to an MS SQL instance on AWS?Can't connect to S3 using cyberduckAccess AWS console for another account from my own accontIssues with a Client involving AWS CloudFront and Static IPsAccsess S3 from the command line without a secret keydisabling my existing AWS access key until I need another onetotalcommander sftp 2.0.0 plugin aws, can't connect with non “ec2-user” useropenVPN on AWS free tier via RoadWarrior - connecting, but no internetKnow the identity behind an AWS canonical ID






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







1















Strange situation - I inherited a piece of software. This software has AWS access through an Access Key and Secret, and I have both of those. However, the person who handed this to me doesn't know the actual account that was used to create this. Is there some way to figure out an account name from an access key/secret?










share|improve this question







New contributor




johnnyb is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











put on hold as off-topic by DavidPostill 3 hours ago


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "This question is not about computer hardware or software, within the scope defined in the help center." – DavidPostill

If this question can be reworded to fit the rules in the help center, please edit the question.























    1















    Strange situation - I inherited a piece of software. This software has AWS access through an Access Key and Secret, and I have both of those. However, the person who handed this to me doesn't know the actual account that was used to create this. Is there some way to figure out an account name from an access key/secret?










    share|improve this question







    New contributor




    johnnyb is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.











    put on hold as off-topic by DavidPostill 3 hours ago


    This question appears to be off-topic. The users who voted to close gave this specific reason:


    • "This question is not about computer hardware or software, within the scope defined in the help center." – DavidPostill

    If this question can be reworded to fit the rules in the help center, please edit the question.



















      1












      1








      1








      Strange situation - I inherited a piece of software. This software has AWS access through an Access Key and Secret, and I have both of those. However, the person who handed this to me doesn't know the actual account that was used to create this. Is there some way to figure out an account name from an access key/secret?










      share|improve this question







      New contributor




      johnnyb is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      Strange situation - I inherited a piece of software. This software has AWS access through an Access Key and Secret, and I have both of those. However, the person who handed this to me doesn't know the actual account that was used to create this. Is there some way to figure out an account name from an access key/secret?







      amazon-web-services






      share|improve this question







      New contributor




      johnnyb is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      johnnyb is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      johnnyb is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 9 hours ago









      johnnybjohnnyb

      1061




      1061




      New contributor




      johnnyb is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      johnnyb is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      johnnyb is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




      put on hold as off-topic by DavidPostill 3 hours ago


      This question appears to be off-topic. The users who voted to close gave this specific reason:


      • "This question is not about computer hardware or software, within the scope defined in the help center." – DavidPostill

      If this question can be reworded to fit the rules in the help center, please edit the question.







      put on hold as off-topic by DavidPostill 3 hours ago


      This question appears to be off-topic. The users who voted to close gave this specific reason:


      • "This question is not about computer hardware or software, within the scope defined in the help center." – DavidPostill

      If this question can be reworded to fit the rules in the help center, please edit the question.






















          1 Answer
          1






          active

          oldest

          votes


















          0














          If you have the key and the secret, configure the CLI with them and use aws iam get-user.



          With no arguments, this command defaults to querying for the user making the request. The response will include an ARN, containing the AWS account number.



          You should get similar results with another alternative, aws sts get-caller-identity.






          share|improve this answer






























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            If you have the key and the secret, configure the CLI with them and use aws iam get-user.



            With no arguments, this command defaults to querying for the user making the request. The response will include an ARN, containing the AWS account number.



            You should get similar results with another alternative, aws sts get-caller-identity.






            share|improve this answer




























              0














              If you have the key and the secret, configure the CLI with them and use aws iam get-user.



              With no arguments, this command defaults to querying for the user making the request. The response will include an ARN, containing the AWS account number.



              You should get similar results with another alternative, aws sts get-caller-identity.






              share|improve this answer


























                0












                0








                0







                If you have the key and the secret, configure the CLI with them and use aws iam get-user.



                With no arguments, this command defaults to querying for the user making the request. The response will include an ARN, containing the AWS account number.



                You should get similar results with another alternative, aws sts get-caller-identity.






                share|improve this answer













                If you have the key and the secret, configure the CLI with them and use aws iam get-user.



                With no arguments, this command defaults to querying for the user making the request. The response will include an ARN, containing the AWS account number.



                You should get similar results with another alternative, aws sts get-caller-identity.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 3 hours ago









                Michael - sqlbotMichael - sqlbot

                998610




                998610















                    Popular posts from this blog

                    Cannot install PyQt5 The Next CEO of Stack OverflowCannot install tcpreplay 3.4.4cannot...

                    Kapp-Putsch Acontecimentos | Outros artigos | Menu de navegação

                    Why did early computer designers eschew integers? The Next CEO of Stack OverflowWhat register...