-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
79 lines (64 loc) · 1.79 KB
/
variables.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
variable "resource_prefix" {
description = "Prefix for AWS EKS resources (VPCs, EKS cluster/namespace)"
default = "mb-eks"
}
variable "account_id" {
description = "AWS account ID"
default = "878179636352"
}
variable "region" {
description = "AWS region"
default = "eu-north-1"
}
variable "vpc_cidr" {
description = "AWS VPC CIDR"
default = "10.181.0.0/16"
}
variable "vpc_public_subnet_cidr_a" {
description = "AWS VPC public subnet A CIDR"
default = "10.181.0.0/24"
}
variable "vpc_public_subnet_cidr_b" {
description = "AWS VPC public subnet B CIDR"
default = "10.181.1.0/24"
}
variable "vpc_private_subnet_cidr_a" {
description = "AWS VPC private subnet A CIDR"
default = "10.181.3.0/24"
}
variable "vpc_private_subnet_cidr_b" {
description = "AWS VPC private subnet B CIDR"
default = "10.181.4.0/24"
}
variable "vpc_database_subnet_cidr_a" {
description = "AWS VPC database subnet A CIDR"
default = "10.181.6.0/24"
}
variable "vpc_database_subnet_cidr_b" {
description = "AWS VPC database subnet B CIDR"
default = "10.181.7.0/24"
}
variable "eks_ami_type" {
description = "AMI type for AWS EKS node group instances"
default = "AL2_x86_64"
}
variable "node_group_instance_type" {
description = "Type of AWS EKS node group instances to provision"
default = "t3.medium"
}
variable "common_origin_tag" {
description = "AWS Tag value for key Origin"
default = "Terraform Cloud"
}
variable "common_owner_tag" {
description = "AWS Tag value for key Owner"
default = "mblomdahl"
}
variable "common_purpose_tag" {
description = "AWS Tag value for key Purpose"
default = "Getting friendly with EKS"
}
variable "common_stack_tag" {
description = "AWS Tag value for key Stack"
default = "Dev"
}