-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tf
222 lines (175 loc) · 4.75 KB
/
terraform.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
## Variables
variable "region" {
description = "AWS Region"
type = string
}
variable "tags" {
description = "A map of tags to add to all resources"
type = map(string)
default = {}
}
variable "cluster_name" {
description = "The name of the EKS cluster"
type = string
}
variable "cluster_version" {
description = "EKS Cluster Version"
type = string
}
## -- END Variables
## Configuration
terraform {
backend "local" {
path = "terraform.tfstate"
}
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
}
}
}
provider "aws" {
region = var.region
}
data "aws_region" "current" {}
data "aws_availability_zones" "available" {
state = "available"
}
data "aws_caller_identity" "current" {}
## -- END Configuration
## VPC
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "5.7.0"
name = "${var.cluster_name}-vpc"
cidr = "10.0.0.0/16"
azs = data.aws_availability_zones.available.names
private_subnets = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"]
public_subnets = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"]
enable_nat_gateway = true
enable_vpn_gateway = true
public_subnet_tags = {
"kubernetes.io/role/elb" = 1
}
private_subnet_tags = {
"kubernetes.io/role/internal-elb" = 1
"karpenter.sh/discovery" = var.cluster_name
}
tags = merge({
Terraform = "true"
Owner = data.aws_caller_identity.current.user_id
}, var.tags)
}
## -- END VPC
## EKS Cluster
module "eks" {
source = "terraform-aws-modules/eks/aws"
version = "20.8.4"
cluster_name = var.cluster_name
cluster_version = var.cluster_version
cluster_endpoint_public_access = true
vpc_id = module.vpc.vpc_id
subnet_ids = module.vpc.private_subnets
cluster_addons = {
coredns = {
most_recent = true
}
kube-proxy = {
most_recent = true
}
vpc-cni = {
most_recent = true
}
}
eks_managed_node_groups = {
system = {
min_size = 2
max_size = 10
desired_size = 2
instance_types = ["t3.large"]
capacity_type = "SPOT"
}
}
# Cluster access entry
# To add the current caller identity as an administrator
enable_cluster_creator_admin_permissions = true
node_security_group_additional_rules = {
# allow connections from EKS to the internet
egress_all = {
protocol = "-1"
from_port = 0
to_port = 0
type = "egress"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["::/0"]
}
# allow connections from EKS to EKS (internal calls)
ingress_self_all = {
protocol = "-1"
from_port = 0
to_port = 0
type = "ingress"
self = true
}
}
tags = merge({
Terraform = "true"
Owner = data.aws_caller_identity.current.user_id
"karpenter.sh/discovery" = var.cluster_name
}, var.tags)
}
## -- END EKS Cluster
## Karpenter
module "karpenter" {
source = "terraform-aws-modules/eks/aws//modules/karpenter"
version = "20.8.4"
cluster_name = module.eks.cluster_name
enable_irsa = true
irsa_oidc_provider_arn = module.eks.oidc_provider_arn
# Attach additional IAM policies to the Karpenter node IAM role
node_iam_role_additional_policies = {
AmazonSSMManagedInstanceCore = "arn:aws:iam::aws:policy/AmazonSSMManagedInstanceCore"
}
tags = merge({
Terraform = "true"
Owner = data.aws_caller_identity.current.user_id
}, var.tags)
}
## -- END Karpenter
## EBS Driver
data "aws_iam_policy" "ebs_csi_policy" {
arn = "arn:aws:iam::aws:policy/service-role/AmazonEBSCSIDriverPolicy"
}
module "irsa-ebs-csi" {
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc"
version = "5.37.2"
create_role = true
role_name = "AmazonEKSTFEBSCSIRole-${module.eks.cluster_name}"
provider_url = module.eks.oidc_provider
role_policy_arns = [data.aws_iam_policy.ebs_csi_policy.arn]
oidc_fully_qualified_subjects = ["system:serviceaccount:kube-system:ebs-csi-controller-sa"]
tags = merge({
Terraform = "true"
Owner = data.aws_caller_identity.current.user_id
}, var.tags)
}
## -- END EBS Driver
## Outputs
output "info" {
value = {
eks = {
cluster_name = module.eks.cluster_name
cluster_version = module.eks.cluster_version
}
ebs = {
iam_role_arn = module.irsa-ebs-csi.iam_role_arn
}
karpenter = {
queue_name = module.karpenter.queue_name
iam_role_arn = module.karpenter.iam_role_arn
node_iam_role_name = module.karpenter.node_iam_role_name
}
}
}
## -- End Outputs