1. 반복문

   count 변수를 두고 변수에 count에 index를 지정하여 사용

   resource "aws_iam_user" "test" {

         count = 3

         name = "test.${count.index}"

   }

 

   list형 변수를 사용할 경우 

   variable "alpha" {

        description = "Create list variables"

        type = "list"

        default = ["ab", "cd", "ef", "hj"]

   }

   length를 통해 count를 가져와서 element 함수를 사용

   resource "aws_iam_user" "test" {

        count = "${length(var.alpha)}"

        name = "${element(var.alpha, count.index)}"

   }

 

2. 조건문

   count = 1 이면 실행, 0 이면 실행 되지 않음.

+ Recent posts