44 lines
670 B
HCL
44 lines
670 B
HCL
variable "instance_type" {
|
|
type = string
|
|
default = "t2.nano"
|
|
}
|
|
|
|
variable "instance_name" {
|
|
type = string
|
|
default = "k3s-box"
|
|
}
|
|
|
|
variable "instance_ami" {
|
|
type = string
|
|
default = "ami-0889a44b331db0194" # amazon linux us-east-1
|
|
}
|
|
|
|
variable "availability_zone" {
|
|
type = string
|
|
default = "us-east-1a"
|
|
}
|
|
|
|
variable "create_ebs_block_device" {
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "enable_ingress_http" {
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "duckdns_domain" {
|
|
type = string
|
|
default = "None"
|
|
}
|
|
|
|
variable "duckdns_token" {
|
|
type = string
|
|
default = "None"
|
|
}
|
|
|
|
variable "private_key_password" {
|
|
type = string
|
|
default = "password"
|
|
} |