Terraform - assume_role_policy - 与标准 IAM 策略相似但略有不同 [英] Terraform - assume_role_policy - similar but slightly different than standard IAM policy

查看:12
本文介绍了Terraform - assume_role_policy - 与标准 IAM 策略相似但略有不同的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

此页面 https://www.terraform.io/docs/providers/aws/r/iam_role.html 提到:

<块引用>

注意:这个假设角色策略非常相似但略有不同不仅仅是标准 IAM 策略,不能使用 aws_iam_policy资源.但是,它可以使用 aws_iam_policy_document 数据源,请参阅下面的示例以了解其工作原理.

assume_role_policy标准 IAM 政策有何不同?

为什么?

解决方案

假设角色策略是与角色相关联的特殊策略,用于控制哪些委托人(用户、其他角色、AWS 服务等)) 可以假设";角色.假设一个角色意味着生成临时凭证以使用与该角色关联的访问策略授予的权限.

代入角色策略在以下方面不同于普通策略:

  • 它是角色本身的属性,而不是与角色关联的单独对象.每个角色只有一个承担角色策略.
  • 在承担角色策略中唯一具有任何意义的 Action 值是 sts:AssumeRole 和它的一些其他变体(在撰写本文时,sts:AssumeRoleWithSAMLsts:AssumeRoleWithWebIdentity).这些是用于获取角色临时凭证的 API 操作.

正是这些差异中的第一个造成了 Terraform 文档中提到的差异:由于角色只有一个 IAM 策略,并且它直接声明为角色的一部分,因此必须将其策略文档作为aws_iam_role 资源.aws_iam_policy_document 数据源只是将其输入简单转换为 IAM JSON 策略文档格式,因此可用于生成 assume_role_policy 属性的值.p>

当 AWS 服务代表您调用另一个 API 服务时,它会在内部为您指定的角色获取临时凭证,然后它可以使用这些凭证来调用其他服务 API.正是出于这个原因,有必要创建角色并将它们分配给 AWS Lambda、EC2(通过实例配置文件)、Kinesis Firehose 等服务.


作为 另一个问题的答案,其中提供了一些实际 IAM 角色、承担角色策略和常规策略的示例.

This page https://www.terraform.io/docs/providers/aws/r/iam_role.html mentions:

NOTE: This assume_role_policy is very similar but slightly different than just a standard IAM policy and cannot use an aws_iam_policy resource. It can however, use an aws_iam_policy_document data source, see example below for how this could work.

Is there any reason why the assume_role_policy is different from the standard IAM policy?

Any why?

解决方案

An assume role policy is a special policy associated with a role that controls which principals (users, other roles, AWS services, etc) can "assume" the role. Assuming a role means generating temporary credentials to act with the privileges granted by the access policies associated with that role.

An assume role policy differs from a normal policy in the following ways:

  • It is a property of the role itself, rather than a separate object associated with the role. There is only one assume role policy per role.
  • The only Action values that have any meaning in an assume role policy are sts:AssumeRole and some other variants on it (at the time of writing, sts:AssumeRoleWithSAML and sts:AssumeRoleWithWebIdentity). Those are the API operations used to obtain the temporary credentials for the role.

It is the first of these differences that creates the difference mentioned in the Terraform documentation: since a role has exactly one IAM policy and it is declared directly as part of the role, its policy document must be provided as an attribute of the aws_iam_role resource. The aws_iam_policy_document data source is just a simple transform of its input into an IAM JSON policy document format, so it can be used to generate the value of the assume_role_policy attribute.

When an AWS service makes calls to another API service on your behalf, it is internally obtaining temporary credentials for the role you designate, which it can then use to make calls to other service APIs. It is for this reason that it is necessary to create roles and assign them to services such as AWS Lambda, EC2 (via instance profiles), Kinesis Firehose, etc.


I wrote a more elaborate description of this as part of an answer to another question, which gives some examples of practical IAM roles, assume role policies and regular policies.

这篇关于Terraform - assume_role_policy - 与标准 IAM 策略相似但略有不同的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆