2018-03-04 02:52:01 +01:00
|
|
|
variable "name" {
|
2018-02-27 07:16:34 +01:00
|
|
|
type = "string"
|
2018-03-04 02:52:01 +01:00
|
|
|
description = "Unique name instance group"
|
2018-02-27 07:16:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "vpc_id" {
|
2018-03-11 22:46:05 +01:00
|
|
|
type = "string"
|
2018-02-27 07:16:34 +01:00
|
|
|
description = "ID of the VPC for creating instances"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "subnet_ids" {
|
2018-03-11 22:46:05 +01:00
|
|
|
type = "list"
|
2018-02-27 07:16:34 +01:00
|
|
|
description = "List of subnet IDs for creating instances"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "security_groups" {
|
2018-03-11 22:46:05 +01:00
|
|
|
type = "list"
|
2018-02-27 07:16:34 +01:00
|
|
|
description = "List of security group IDs"
|
|
|
|
}
|
|
|
|
|
|
|
|
# instances
|
|
|
|
|
|
|
|
variable "count" {
|
|
|
|
type = "string"
|
|
|
|
default = "1"
|
|
|
|
description = "Number of instances"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "instance_type" {
|
|
|
|
type = "string"
|
|
|
|
default = "t2.small"
|
|
|
|
description = "EC2 instance type"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "os_channel" {
|
|
|
|
type = "string"
|
|
|
|
default = "stable"
|
|
|
|
description = "Container Linux AMI channel (stable, beta, alpha)"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "disk_size" {
|
|
|
|
type = "string"
|
|
|
|
default = "40"
|
|
|
|
description = "Size of the disk in GB"
|
|
|
|
}
|
|
|
|
|
|
|
|
# configuration
|
|
|
|
|
|
|
|
variable "kubeconfig" {
|
2018-03-11 22:46:05 +01:00
|
|
|
type = "string"
|
2018-02-27 07:16:34 +01:00
|
|
|
description = "Generated Kubelet kubeconfig"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "ssh_authorized_key" {
|
|
|
|
type = "string"
|
|
|
|
description = "SSH public key for user 'core'"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "service_cidr" {
|
|
|
|
description = <<EOD
|
|
|
|
CIDR IPv4 range to assign Kubernetes services.
|
|
|
|
The 1st IP will be reserved for kube_apiserver, the 10th IP will be reserved for kube-dns.
|
|
|
|
EOD
|
|
|
|
|
|
|
|
type = "string"
|
|
|
|
default = "10.3.0.0/16"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "cluster_domain_suffix" {
|
|
|
|
description = "Queries for domains with the suffix will be answered by kube-dns. Default is cluster.local (e.g. foo.default.svc.cluster.local) "
|
|
|
|
type = "string"
|
|
|
|
default = "cluster.local"
|
|
|
|
}
|
2018-02-20 17:36:21 +01:00
|
|
|
|
|
|
|
variable "clc_snippets" {
|
|
|
|
type = "list"
|
|
|
|
description = "Container Linux Config snippets"
|
|
|
|
default = []
|
|
|
|
}
|