iam_account

dhoppeIT/iam_account/aws

Terraform Module HCL AWS

Terraform module to manage the Amazon Web Services resources (aws_iam_account_alias, aws_iam_account_password_policy)

Install
module "iam_account" {
source = "dhoppeIT/iam_account/aws"
version = "0.2.1"
}
plain text: /constructs/tfmod-dhoppeit-iam-account-aws/install.txt
⭐ Source on GitHub 📦 Registry page
README

terraform-aws-iam_account Terraform module to manage the Amazon Web Services resources (aws_iam_account_alias, aws_iam_account_password_policy). Graph Usage Copy and paste into your Terraform configuration, insert the variables and run ``terraform init`: `hcl module "aws_iam_account" { source = "dhoppeIT/iam_account/aws" create_account_alias = true account_alias = "dhoppeit" create_account_password_policy = true max_password_age = 90 minimum_password_length = 32 password_reuse_prevention = 3 require_lowercase_characters = true require_numbers = true require_symbols = true require_uppercase_characters = true } ` Requirements | Name | Version | |------|---------| | terraform | >= 1.0 | | aws | ~> 3.68 | Providers | Name | Version | |------|---------| | aws | 3.74.0 | Modules No modules. Reso

Inputs (12)
NameTypeDescriptionDefault
hard_expiryboolWhether users are prevented from setting a new password after their password has required
max_password_agenumberThe number of days that an user password is valid required
password_reuse_preventionnumberThe number of previous passwords that users are prevented from reusing required
require_lowercase_charactersboolWhether to require lowercase characters for user passwords required
require_numbersboolWhether to require numbers for user passwords required
account_aliasstringThe account alias required
require_symbolsboolWhether to require symbols for user passwords required
require_uppercase_charactersboolWhether to require uppercase characters for user passwords required
create_account_aliasboolWhether to create IAM account aliasfalse
create_account_password_policyboolWhether to create IAM account password policyfalse
allow_users_to_change_passwordboolWhether to allow users to change their own passwordtrue
minimum_password_lengthnumberMinimum length to require for user passwords6
Resources (2)
aws_iam_account_aliasaws_iam_account_password_policy
Details
FrameworkTerraform Module
LanguageHCL
Version0.2.1
Cloud AWS
★ Stars0
Forks0
Total downloads4.8k
Inputs12
Resources2
LicenseApache-2.0
NamespacedhoppeIT
Updated