mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-03 20:57:09 -06:00
c6beaa7ce8
Signed-off-by: Valentin Pichard <valentin.pichard@corp.ovh.com>
22 lines
286 B
HCL
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"
|
|
}
|