Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- kernel
- asgi
- Service
- ansible
- dockerfile
- EC2
- FastAPI
- ebs
- EKS
- AWS
- IAM
- elasticsearch
- YAML
- POD
- IAC
- Deployment
- Kubernetes
- terraform
- WSGI
- github
- Python
- leetcode
- K8S
- intervals
- event loop
- 자바스크립트
- Django
- docker
- asyncio
- 쿠버네티스
Archives
- Today
- Total
궁금한게 많은 개발자 노트
[ IaC ] Terraform AWS current caller identity 본문
aws_caller_identity
terraform version 0.7.1부터 지원하는, 자신의 계정(account_id)또는 다른 계정의 account id, user id, arn을 참조하고자 할 때 사용되는 data resource입니다.
특정 aws resource에서 account_id를 포함하는 경우에도 하드코딩 하지 않고 손 쉽게 대체할수 있습니다.
data "aws_caller_identity" "current" {}
output "account_id" {
value = "${data.aws_caller_identity.current.account_id}"
}
output "caller_arn" {
value = "${data.aws_caller_identity.current.arn}"
}
output "caller_user" {
value = "${data.aws_caller_identity.current.user_id}"
}
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/caller_identity
또한 terraform에서 aws account관련 설정할 때 자주 사용되는 data resource인 aws_iam_group에 대해 알아보려 합니다.
data "aws_iam_group" "example" {
group_name = "an_example_group_name"
}
특정 그룹의 정보에 대해 알 수 있으며, policy나 role을 group단위로 적용할 때 참조하기 위해 주로 사용됩니다.
arn, group_id, path, users에 대한 참조가 가능하며 users는 arn, path, user_id, user_name의 정보를 가지고 있습니다.
This data source exports the following attributes in addition to the arguments above:
- arn - Group ARN.
- group_id - Stable and unique string identifying the group.
- path - Path to the group.
- users - List of objects containing group member information. See below.
users
- arn - User ARN.
- path - Path to the IAM user.
- user_id - Stable and unique string identifying the IAM user.
- user_name - Name of the IAM user.
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_group
'DevOps' 카테고리의 다른 글
[ AWS ] EKS구축 및 Continuous Deployment 다이어그램 (0) | 2023.11.20 |
---|---|
[ AWS ] EKS사용 시 AWS IAM User와 k8s Role의 관계 (0) | 2023.11.10 |
[ IaC ] Terraform resource lifecycle & meta arguments (0) | 2023.10.25 |
[ IaC ] Terraform이란? (0) | 2023.10.10 |
[ Docker ] docker image 원격 서버로 전달 (0) | 2023.08.30 |
Comments