TerraformのCollection Typesについて

  • list
    • [0]から始まる連続した整数によって識別される一連の値。string,number,boolなどを指定できる

list(string)は文字列のリストを表す。

参考: https://qiita.com/hikaru_motomiya/items/d773355d3ffa854c7ad3

variable "hoge" {
  type        = list(string)
  description = "hoge"
  default     = []
}