2019-11-18 09:49:51 +03:00
|
|
|
## MAIN Variables
|
|
|
|
|
2019-11-18 09:21:02 +03:00
|
|
|
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"
|
|
|
|
}
|
2019-11-25 07:47:39 +03:00
|
|
|
|
|
|
|
variable "etcd_member_count" {
|
|
|
|
type = string
|
|
|
|
description = "The number of etcd instances in the cluster"
|
|
|
|
default = "1"
|
|
|
|
}
|