I could not be sure but I would like to share my situation.
aws_availability_zones.names is a list according to [documentation]. But I can not assign into aws_elb.availability_zones
data "aws_availability_zones" "available" {}
resource "aws_elb" "elb" {
availability_zones = "${data.aws_availability_zones.available.names}"
////
}
Is this a bug?
seems bracket are required but I did not understand why it is required.
availability_zones = ["${data.aws_availability_zones.available.names}"]
I'm going to lock this issue because it has been closed for _30 days_ โณ. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Most helpful comment
seems bracket are required but I did not understand why it is required.