Skip to content

Commit

Permalink
feat(eks.tf): EKS 모듈에 새로운 사용자 추가
Browse files Browse the repository at this point in the history
새로운 사용자 eunchan과 injun을 시스템 마스터 그룹에 추가하여
EKS 클러스터에 대한 접근 권한을 부여함.
  • Loading branch information
HyunSu1768 committed Nov 14, 2024
1 parent c7ed988 commit b859cc1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@ module "eksv2" {
userarn = "arn:aws:iam::${data.aws_caller_identity.current.account_id}:user/xquare"
username = "xquare-admin"
groups = ["system:masters"]
},
{
userarn = "arn:aws:iam::${data.aws_caller_identity.current.account_id}:user/eunchan"
username = "eunchan"
groups = ["system:masters"]
},
{
userarn = "arn:aws:iam::${data.aws_caller_identity.current.account_id}:user/injun"
username = "injun"
groups = ["system:masters"]
}
]
auth_roles = [
Expand Down

0 comments on commit b859cc1

Please sign in to comment.