-
Notifications
You must be signed in to change notification settings - Fork 1
/
vars.tf
60 lines (45 loc) · 1018 Bytes
/
vars.tf
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
48
49
50
51
52
53
54
55
56
57
58
variable "regionDefault" {
default = "us-east-1"
}
variable "labRole" {
default = "arn:aws:iam::964124800382:role/LabRole"
}
variable "projectName" {
default = "tech"
}
variable "subnetA" {
default = "subnet-01b0806ee05739c86"
}
variable "subnetB" {
default = "subnet-051aee4b3b1074344"
}
variable "subnetC" {
default = "subnet-059cf475652425736"
}
variable "vpcId" {
default = "vpc-08ee1cdb9cb41060f"
}
variable "instanceType" {
default = "t3a.medium"
}
variable "principalArn" {
default = "arn:aws:iam::964124800382:role/voclabs"
}
variable "policyArn" {
default = "arn:aws:eks::aws:cluster-access-policy/AmazonEKSClusterAdminPolicy"
}
variable "accessConfig" {
default = "API_AND_CONFIG_MAP"
}
variable "aws_access_key_id" {
description = "AWS access key ID"
type = string
}
variable "aws_secret_access_key" {
description = "AWS secret access key"
type = string
}
variable "aws_session_token" {
description = "AWS Session Token"
type = string
}