true or falseで作られないかもしれないresourceの値を取得したい 例えばこのようにneed_instanceみたいなBooleanで作るか作らないかを決めるみたいなresourceがあったときに variable "need_instance" { default = false } resource "aws_instance" "hoge" { count = "${var.need_instance ? 1 : 0}" ... } outputで一つ目のinstance_idが欲しいというときに output "instance_id" { value = "${aws_instance.hoge.id}" } need_instance = falseだとここでエラーになってしまう。 workaround力技 github.com こうする "${element(