> For the complete documentation index, see [llms.txt](https://docs.panther.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.panther.com/ko/cloud-scanning/cloud-resource-attributes/aws/password-policy.md).

# 비밀번호 정책

## 리소스 유형

`AWS.PasswordPolicy`

## 리소스 ID 형식

Password Policy 리소스의 경우, 리소스 ID는 다음과 같이 구성됩니다:

`[AccountId]::AWS.PasswordPolicy`

예:

`123456789012::AWS.PasswordPolicy`

이를 통해 첫 번째 콜론 앞의 문자를 확인하여 연결된 모든 AWS 계정의 Password Policy 리소스를 구분할 수 있습니다.

## 배경

AWS 계정에 암호 정책을 설정하여 복잡성 요구 사항을 적용할 수 있습니다. 이 리소스는 다음의 모든 [암호 정책 옵션](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_passwords_account-policy.html#password-policy-details) 내부 요구 사항을 준수하도록 합니다.

## 필드

| 필드                           | 유형    | 설명                                                                     |
| ---------------------------- | ----- | ---------------------------------------------------------------------- |
| `PasswordReusePrevention`    | `Int` | AWS가 기억하고 사용자의 재사용을 방지하는 이전 암호의 수                                      |
| `AllowUsersToChangePassword` | `불리언` | 사용자가 자신의 암호를 변경할 수 있는지 여부                                              |
| `존재 여부`                      | `불리언` | 계정에 암호 정책이 명시적으로 설정되었는지 여부를 나타냅니다. 만약 `false`, 리소스는 다른 필드의 기본값을 표시합니다. |

## 예시

```javascript
{
    "AccountId": "123456789012",
    "AllowUsersToChangePassword": true,
    "AnyExist": true,
    "ExpirePasswords": true,
    "HardExpiry": null,
    "MaxPasswordAge": 90,
    "MinimumPasswordLength": 14,
    "Name": "AWS.PasswordPolicy",
    "PasswordReusePrevention": 24,
    "Region": "global",
    "RequireLowercaseCharacters": true,
    "RequireNumbers": true,
    "RequireSymbols": true,
    "RequireUppercaseCharacters": true,
    "ResourceId": "123456789012::AWS.PasswordPolicy",
    "ResourceType": "AWS.PasswordPolicy",
    "Tags": null,
    "TimeCreated": null
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.panther.com/ko/cloud-scanning/cloud-resource-attributes/aws/password-policy.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
