-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
47 lines (36 loc) · 1.11 KB
/
variables.tf
File metadata and controls
47 lines (36 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
variable "public_key" {
description = "Public ssh key to grant access to the instance"
}
variable "private_key" {
description = "Private ssh key to grant access to the instance"
}
variable "cluster" {
description = "Name of the kubernetes cluster, to tag the instance with"
}
variable "cluster_cidr" {
description = "cluster_cidr to use for VPC"
}
variable "public_cidr" {
description = "public_cidr to use for public subnet"
}
variable "private_cidr" {
description = "private_cidr to use for private subnet"
}
variable "ami" {
description = "Your image AMI for the instance to run."
}
variable "instance_type" {
description = "The instance size to run."
}
variable "AWS_REGION" {
description = "AWS region to deploy ec2 instance and configure cluster, also your environment TF_VAR_AWS_REGION by default."
}
variable "AWS_PROFILE" {
description = "Your environment TF_VAR_AWS_PROFILE by default."
}
variable "AWS_ACCESS_KEY_ID" {
description = " Your environment TF_VAR_AWS_ACCESS_KEY_ID by default."
}
variable "AWS_SECRET_ACCESS_KEY" {
description = "Your environment TF_VAR_AWS_SECRET_ACCESS_KEY"
}