Configuration for creating an IAM user in an AWS account and optionally enable console access for the user with a temporary password.
The following settings are available in this template:
- User Name
- Enable Console Access to assign a console password for the user
- IAM Policies
- Managed policies: specify already existing managed IAM policies in the AWS account
- Inline policies: define new inline policies attached to the IAM role
- Additional settings such as User Path, IAM Group(s) for the user
- Permission Boundary to specify the IAM policy ARN that will be used as the permission boundary for the user
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
IamUser:
Type: 'AWS::IAM::User'
Properties:
Path: /
Parameters: {}
Metadata: {}
Conditions: {}