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 | 31 |
Tags
- spark
- 추천시스템
- hadoop
- 개발자혜성
- kafka
- AWS SageMaker
- Python
- Spark structured streaming
- 빅데이터플랫폼
- eks
- 하둡
- BigData
- dataengineer
- cloudera
- DataEngineering
- mlops
- 클라우데라
- 데이터엔지니어
- 하둡에코시스템
- pyspark
- apache spark
- Terraform
- redis bloom filter
- 개발자
- 빅데이터
- kubernetes
- recommendation system
- 블로그
- Data engineering
- 데이터엔지니어링
Archives
- Today
- Total
Hyesung Oh
Terraform으로 AWS EKS의 aws-auth configmap 관리하기 본문
반응형
terraform import kubernetes_config_map.aws_auth kube-system/aws-auth
EKS 클러스터 생성 후 사용자 역할을 추가하기 위해 aws-auth configmap를 Terraform resource로 관리하게 되었다. 참고
resource "kubernetes_config_map" "aws_auth" {
data = yamldecode(local.eks_prod_aws_auth_configmap_yaml)["data"]
metadata {
name = "aws-auth"
namespace = "kube-system"
}
}
aws-auth configmap의 경우 EKS 클러스터가 만들어질 때 자동으로 클러스터 생성자의 IAM Role이 systemr:masters 그룹에 추가되게 된다.
따라서 무작정 terraform apply를 하게 되면 configmaps "aws-auth" already exists 같은 에러 로그를 확인할 수 있다.
이 때, 가능한 해결책이다.
먼저, terraform import로 기생성된 resource를 terraform state file로 Import 해온다.
terraform import kubernetes_config_map.aws_auth kube-system/aws-auth
만약 이 때, 아래와 같은 에러가 발생한다면
Error: Invalid provider configuration
│
│ on /Users/ohyeseong/Desktop/ridi/terraform/ridi-prod-data-kubernetes/main.tf line 28:
│ 28: provider "kubernetes" {
│
│ The configuration for provider["registry.terraform.io/hashicorp/kubernetes"] depends on values that cannot be determined until apply.
terraform plan을 한번 실행해준다.
이후 다시 terraform import를 실행하게 되면 성공적으로 완료되는 것을 확인할 수 있다.
Acquiring state lock. This may take a few moments...
Import successful!
The resources that were imported are shown above. These resources are now in
your Terraform state and will henceforth be managed by Terraform.
반응형
'Data Engineering > DevOps' 카테고리의 다른 글
Dockerfile Reference 문서를 읽고 나름대로 정리한 중요한 포인트들 (0) | 2022.09.28 |
---|---|
AWS EKS의 RBAC, IRSA 딥다이브 (0) | 2022.05.31 |
Kubernetes에서 Open Source Redash Helm Chart로 운영하기 (0) | 2022.05.12 |
Terraform 입문하기 (0) | 2021.01.28 |
Comments