gpt4 book ai didi

amazon-web-services - 适用于 IAM 的 AWS Cloudformation 模板帮助

转载 作者:行者123 更新时间:2023-12-03 07:48:24 25 4
gpt4 key购买 nike

我不熟悉在 Cloudformattion 中创建模板。我有一个要求,我需要创建一个带有密码和访问 key 的 IAM 用户,首次登录时应更改密码,应创建一个 IAM 组,并在组中添加一组管理策略和自定义策略。

我该如何处理这个问题,请帮忙

谢谢萨蒂什

最佳答案

---
AWSTemplateFormatVersion: '2010-09-09'
Description: 'IAM user'
Parameters:
UserName:
Type: String
Password:
Type: String
NoEcho: true
Resources:
Type: 'AWS::IAM::User'
Properties:
LoginProfile:
Password: !Ref Password
PasswordResetRequired: true
ManagedPolicyArns:
- 'arn:aws:iam::aws:policy/AdministratorAccess'
UserName: !Ref UserName

下次:为什么不直接使用谷歌呢?

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html密码设置在 LoginProfile http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user-loginprofile.html

关于amazon-web-services - 适用于 IAM 的 AWS Cloudformation 模板帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42104881/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com