opentofu/examples/openstack-with-networking/variables.tf
Valentin Pichard c6beaa7ce8 Fmt all the config files
Signed-off-by: Valentin Pichard <valentin.pichard@corp.ovh.com>
2016-09-22 11:49:09 +00:00

22 lines
286 B
HCL

variable "image" {
default = "Ubuntu 14.04"
}
variable "flavor" {
default = "m1.small"
}
variable "ssh_key_file" {
default = "~/.ssh/id_rsa.terraform"
}
variable "ssh_user_name" {
default = "ubuntu"
}
variable "external_gateway" {}
variable "pool" {
default = "public"
}