如何限制亚马逊网络服务中的每个用户使用配额?

时间:2016-10-04 05:14:00

标签: amazon-web-services amazon-iam

我为我的aws root帐户创建了用户,有没有办法限制每个服务的每个用户使用配额。

例如 -

  • 每个用户的AWS IoT邮件配额。

  • EC2实例类型(仅允许免费套餐)。

谢谢。

2 个答案:

答案 0 :(得分:1)

EC2实例类型(仅允许免费套餐)。

{
    "Version": "2012-10-17",
    "Statement": [
        {
           "Effect": "Deny",
           "Action": "ec2:RunInstance",
           "Resource": "arn:aws:ec2:regionname:Accountid:instance/*",
           "Condition": {
                "StringNotLike": {
                      "ec2:InstanceType": "t2.micro"
                }
           }
        }
    ]
}           

答案 1 :(得分:0)

根据我之前发布的post,您只需搜索配额并输入所需的值即可通过控制台或AWS CLI提交配额增加请求。

您可以在以下链接之一中找到带有示例的大多数查询的答案:

[+]开发至 https://dev.to/dineshrathee12/manage-my-service-quotas-also-referred-to-as-limits-in-aws-account-using-aws-cli-commands-5cg2

[+] GitHub: https://github.com/dineshrathee12/Service-Quotas-Cli-with-aws/edit/master/README.md