kubernetes-the-hard-way/terraform/aws/variables.tf

23 lines
473 B
Terraform
Raw Normal View History

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"
2019-11-28 23:00:58 +03:00
default = "k8s"
2019-11-18 09:21:02 +03:00
}
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"
}