variables.tf (375B)
1 variable "do_token" { 2 type = string 3 description = "DO PAT token" 4 default = "" 5 } 6 7 variable "pvt_key" { 8 type = string 9 description = "private ssh key" 10 default = "null" 11 } 12 13 variable "hostname" { 14 type = string 15 description = "hostname of system" 16 default = "test" 17 } 18 19 variable "instance_count" { 20 type = string 21 description = "number of instances to create" 22 default = "1" 23 }