https://github.com/rhythmictech/terraform-aws-iam-password-policy
Creates an AWS IAM password policy
https://github.com/rhythmictech/terraform-aws-iam-password-policy
aws iam iam-policy password policy terraform terraform-module terraform-modules
Last synced: 8 months ago
JSON representation
Creates an AWS IAM password policy
- Host: GitHub
- URL: https://github.com/rhythmictech/terraform-aws-iam-password-policy
- Owner: rhythmictech
- License: mit
- Created: 2019-06-02T21:12:41.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-03-08T14:11:48.000Z (over 4 years ago)
- Last Synced: 2025-04-04T07:11:25.825Z (about 1 year ago)
- Topics: aws, iam, iam-policy, password, policy, terraform, terraform-module, terraform-modules
- Language: HCL
- Homepage: https://registry.terraform.io/modules/rhythmictech/iam-password-policy/aws
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# terraform-aws-iam-password-policy
[](https://github.com/rhythmictech/terraform-aws-iam-password-policy/actions)
## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|:----:|:-----:|:-----:|
| allow\_users\_to\_change\_password | Whether to allow users to change their own password | bool | `"true"` | no |
| hard\_expiry | Whether users are prevented from setting a new password after their password | string | `"false"` | no |
| max\_password\_age | The number of days that an user password is valid. | number | `"90"` | no |
| minimum\_password\_length | Minimum length to require for user passwords. | number | `"14"` | no |
| password\_reuse\_prevention | The number of previous passwords that users are prevented from reusing. | number | `"24"` | no |
| require\_lowercase\_characters | Whether to require lowercase characters for user passwords. | bool | `"true"` | no |
| require\_numbers | Whether to require numbers for user passwords. | bool | `"true"` | no |
| require\_symbols | Whether to require symbols for user passwords. | bool | `"true"` | no |
| require\_uppercase\_characters | Whether to require uppercase characters for user passwords. | bool | `"true"` | no |