I
provider "docker" {
host = "ssh://${var.user}@${var.host}:${var.port}"
}
variable "host" {
type = list(string)
default = ["192.168.100.129"]
}
Error: Incorrect attribute value type
on main.tf line 33, in resource "null_resource" "nexus":
33: host = var.host
Inappropriate value for attribute "host": string required.