> For the complete documentation index, see [llms.txt](https://koojeongyeons-engineering-wiki.gitbook.io/engineering-wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://koojeongyeons-engineering-wiki.gitbook.io/engineering-wiki/aws/iam.md).

# IAM

AWS IAM(Identity and Access Management)

AWS 리소스에 대한 액세스 제어를 제공하는 서비스입니다. IAM은 사용자, 그룹, 권한, 정책 및 인증 정보를 관리하는데 사용됩니다. 이를 통해 리소스에 대한 액세스를 제한하고, 보안 취약점을 최소화할 수 있습니다. IAM를 사용하면 AWS 리소스에 대한 액세스를 정책에 따라 제어할 수 있으며, 보안 인증 기능을 제공하여 리소스를 보호할 수 있습니다.

* AWS 의 IAM은 사용자를 추가하고 쉽게 생성할 수 있는데 SECRET ACCESS KEY는 생성할 때 한번만 확인할 수 있다.

AWS\_ACCESS\_KEY\_ID / AWS\_SECRET\_ACCESS\_KEY 를 환경설정에 추가하여 리소스에 엑세스 할 수 있다.

```jsx
vim ~/.zshrc
```

추가

```jsx
export AWS_ACCESS_KEY_ID=
export AWS_SECRET_ACCESS_KEY=
export AWS_DEFAULT_REGION=
```


---

# 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://koojeongyeons-engineering-wiki.gitbook.io/engineering-wiki/aws/iam.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.
