23 lines
297 B
Terraform
23 lines
297 B
Terraform
|
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"
|
||
|
}
|