> 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 형식

비밀번호 정책 리소스의 경우, 리소스 ID는 다음과 같이 구성됩니다:

`[AccountId]::AWS.PasswordPolicy`

예:

`123456789012::AWS.PasswordPolicy`

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

## 배경

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

## 필드

| 필드                           | 유형    | 설명                                                                       |
| ---------------------------- | ----- | ------------------------------------------------------------------------ |
| `PasswordReusePrevention`    | `Int` | AWS가 기억하고 사용자의 재사용을 방지하는 이전 비밀번호의 수                                      |
| `AllowUsersToChangePassword` | `불리언` | 사용자가 자신의 비밀번호를 변경할 수 있는지 여부                                              |
| `AnyExist`                   | `불리언` | 계정에 비밀번호 정책이 명시적으로 설정되었는지 여부를 나타냅니다. If `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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
