You need to enable JavaScript to run this app.
导航

允许访问指定的服务

最近更新时间2024.01.09 22:05:23

首次发布时间2023.09.05 17:54:34

场景: 限制仅能访问应用型负载均衡的全部操作。
策略示例:

{
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "alb:*"
      ],
      "Resource": [
        "*"
      ]
    }
  ]
}

解读: 这条策略使用通配符*来概括服务alb内的全部操作。