forked from bigbitbus/k8s-tutorial-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
33 lines (27 loc) · 959 Bytes
/
variables.tf
File metadata and controls
33 lines (27 loc) · 959 Bytes
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
#
# Variables Configuration
#
variable "cluster-name" {
default = "kubetutorial101"
type = "string"
}
# AWS account secret key. Please don't put this information into a
# .tfvars file and check it into git :)!
# At the very least, create an environment variable named TF_VAR_access_key
# on your laptop; terraform will pick it up from there automatically
variable "secret_key" {
type = "string"
description = "The AWS secret key"
}
# AWS account access key. Please don't put this information into a
# .tfvars file and check it into git :)!
# At the very least, create an environment variable named TF_VAR_access_key
# on your laptop; terraform will pick it up from there automatically
variable "access_key" {
type = "string"
description = "The AWS access key"
}
variable "end_user_kubectl_client_ip" {
type = "string"
description = "Client where kubectl with run (for limiting kubectl access from that IP only)"
}