iam_user

adriell/iam_user/module

Terraform Module HCL MODULE

Repositorio terraform para criar usuário no iam da AWS.

Install
module "iam_user" {
source = "adriell/iam_user/module"
version = "1.0.0"
}
plain text: /constructs/tfmod-adriell-iam-user-module/install.txt
⭐ Source on GitHub 📦 Registry page
README

Terraform Module - AWS Identity and Access Management (IAM) Terraform versions Terraform 0.12. Usage iam-user: ```hcl module "iam_user" { source = "../../" name = "example" enabled = true policy = Inputs | Name | Description | Type | Default | Required | |------|-------------|:----:|:-----:|:-----:| | enabled | Set to false to prevent the module from creating any resources | bool | true | no | | name | Name of the IAM user | string | n/a | yes | | path | Path of the IAM user | string | / | no | | attach_policy_arns | Existing policy ARNs to attach to the IAM user | string | [] | no | | tags | Tags of the resources | map| n/a | no | | policy | Policy to attach Iam User | string | null | no | Authors Module managed by Adriel Viana. License Apache 2 Licensed. See LICENSE for full details.

Inputs (6)
NameTypeDescriptionDefault
tagsmap(string)Tags of the resource required
policystringPolicy to attach Iam User required
namestringName of the IAM user required
attach_policy_arnslistExisting policy ARNs to attach to the IAM user[]
enabledboolSet to false to prevent the module from creating any resourcestrue
pathstringPath of the IAM user"/"
Outputs (4)
iam_user_arn — ARN do Usuário
iam_user_id — IAM ID do usuário
access_key_id — Access key id
access_secret_key — Secret access key
Resources (4)
aws_iam_access_keyaws_iam_useraws_iam_user_policyaws_iam_user_policy_attachment
Details
FrameworkTerraform Module
LanguageHCL
Version1.0.0
Cloud MODULE
★ Stars2
Forks1
Total downloads782
Inputs6
Outputs4
Resources4
Examples1
Namespaceadriell
Updated