Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法手动创建角色并将其放入 serverless.yml 中?问题是,由于他们的安全策略,我们没有在我们的 iam 用户中获得“iam:CreateRole”权限。
您的 serverless.yml 可以使用现有的 IAM 角色。
您可以在提供者级别设置它:
provider: role: <role ARN>
或在角色级别:
functions: myFunction: role: <role ARN>