강의

멘토링

커뮤니티

Inflearn コミュニティ Q&A

goboo のプロフィール画像
goboo

投稿した質問数

今すぐデブオプス - テラフォームX AWS

ロードバランサー

4.alb 오류 (Call to function "element" failed: cannot use element function with an empty list.)

作成

·

291

1

 4.alb apply 할 경우 아래와 같이 오류가 발생 합니다.

Call to function "element" failed: cannot use element function with an empty list.

 

관련해서 아래와 같이 수정

# 대상 등록
# https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_target_group_attachment
resource "aws_lb_target_group_attachment" "attachment" {
  count = length(data.aws_instances.tag.ids)
  target_group_arn = aws_lb_target_group.tg.arn
  target_id = element(data.aws_instances.tag.ids, count.index)
  port             = 3000 //선택한 인스턴스를 위한 포트
}

 

 

awselementalb

回答 1

0

kookh09875453님의 프로필 이미지
kookh09875453
インストラクター

이슈 파악 및 해결 책 감사합니다.

해당 내용 및 코드 수정하였습니다.

감사합니다.

goboo のプロフィール画像
goboo

投稿した質問数

質問する