mirror of
https://github.com/kelseyhightower/kubernetes-the-hard-way.git
synced 2025-12-15 17:28:58 +03:00
23 lines
477 B
HCL
23 lines
477 B
HCL
## MAIN Variables
|
|
|
|
variable "aws_access_key" {}
|
|
variable "aws_secret_key" {}
|
|
|
|
variable "name" {
|
|
type = string
|
|
description = "The name that will be tagged on all the AWS resources"
|
|
default = "tfcloud"
|
|
}
|
|
|
|
variable "prefix" {
|
|
type = string
|
|
description = "The prefix to add the name"
|
|
default = "jibakurei"
|
|
}
|
|
|
|
variable "etcd_member_count" {
|
|
type = string
|
|
description = "The number of etcd instances in the cluster"
|
|
default = "1"
|
|
}
|