/ variables.tf
variables.tf
1 /* CONFIG ----------------------------------------*/ 2 3 variable "ssh_keys" { 4 description = "Names of ssh public keys to add to created hosts" 5 type = list(string) 6 # ssh key IDs acquired using doctl 7 default = ["16822693", "18813432", "18813461", "19525749", "20671731", "20686611"] 8 } 9 10 variable "env" { 11 description = "Environment for these hosts, affects DNS entries." 12 type = string 13 default = "eth" 14 } 15 16 variable "domain" { 17 description = "DNS Domain to update" 18 type = string 19 default = "statusim.net" 20 } 21 22 variable "ssh_user" { 23 description = "User used to log in to instance" 24 type = string 25 default = "root" 26 }