IAM policy only allowed from Cloudshell?

0

Is there a way to create an IAM policy which will only grant permissions when used FROM Cloudshell?

I have found that the string "exec-env/CloudShell" is in the userAgent, but could this be spoofed?

Example: a user could run 'aws rds' commands on Cloudshell, but not 'on prem' even with API keys.

ld57
demandé il y a 9 mois312 vues
2 réponses
1

Recommended not to use 'UserAgent'.

This key should be used carefully. Since the aws:UserAgent value is provided by the caller in an HTTP header, 
unauthorized parties can use modified or custom browsers to provide any aws:UserAgent value that they 
choose. As a result, aws:UserAgent should not be used to prevent unauthorized parties from making 
direct AWS requests. You can use it to allow only specific client applications, and only after 
testing your policy.

I don't know of a way to restrict API calls to CloudShell environments.

profile pictureAWS
EXPERT
kentrad
répondu il y a 9 mois
  • Ok thanks so userAgent can be spoofed easily.

0

You can find examples of IAM policies for CloudShell in this article Here is some basic example:

{
    "Version": "2012-10-17",
    "Statement": [{
        "Sid": "CloudShellUser",
        "Effect": "Allow",
        "Action": [
            "cloudshell:*"
        ],
        "Resource": "*"
    }]
}
répondu il y a 9 mois
  • Sorry that's not my question. I know how to allow Cloudshell, the question is how to make IAM policies that only allow API usage FROM Cloudshell. For example, allow RDS API only from Cloudshell, not "on prem" shell and scripts.

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions