19 lines
270 B
Terraform
19 lines
270 B
Terraform
|
variable "clc_username" {
|
||
|
default = "<username>"
|
||
|
}
|
||
|
variable "clc_password" {
|
||
|
default = "<password>"
|
||
|
}
|
||
|
|
||
|
variable "clc_account" {
|
||
|
default = "<alias>"
|
||
|
}
|
||
|
|
||
|
# Ubuntu 14.04
|
||
|
variable "image" {
|
||
|
default = "ubuntu-14-64-template"
|
||
|
}
|
||
|
|
||
|
variable "app_port" {
|
||
|
default = 8080
|
||
|
}
|