-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheks.tf
177 lines (145 loc) · 5.17 KB
/
eks.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
locals {
# Your AWS EKS Cluster ID goes here.
k8s_cluster_name = "EKSCluster"
}
# Create an EKS cluster
provider "kubernetes" {
alias = "eks"
host = aws_eks_cluster.eks_cluster.endpoint
cluster_ca_certificate = base64decode(aws_eks_cluster.eks_cluster.certificate_authority[0].data)
token = data.aws_eks_cluster_auth.eks_cluster_auth.token
}
provider "helm" {
alias = "eks"
kubernetes {
host = aws_eks_cluster.eks_cluster.endpoint
cluster_ca_certificate = base64decode(aws_eks_cluster.eks_cluster.certificate_authority[0].data)
token = data.aws_eks_cluster_auth.eks_cluster_auth.token
}
}
resource "aws_eks_cluster" "eks_cluster" {
name = local.k8s_cluster_name
role_arn = aws_iam_role.eks_cluster.arn
vpc_config {
subnet_ids = [aws_subnet.wp_subnet_1.id, aws_subnet.wp_subnet_2.id]
}
}
data "aws_eks_cluster" "target" {
name = local.k8s_cluster_name
depends_on = [aws_eks_cluster.eks_cluster]
}
# Create a Kubernetes configuration file
data "aws_eks_cluster_auth" "eks_cluster_auth" {
name = aws_eks_cluster.eks_cluster.name
depends_on = [aws_eks_cluster.eks_cluster]
}
# Create an IAM role for EKS cluster
resource "aws_iam_role" "eks_cluster" {
name = "EKSClusterRole"
assume_role_policy = jsonencode({
Version = "2012-10-17",
Statement = [{
Action = "sts:AssumeRole",
Effect = "Allow",
Principal = {
Service = ["eks.amazonaws.com", "ec2.amazonaws.com"]
}
}]
})
}
# Attach policies to the IAM role for EKS cluster
resource "aws_iam_policy_attachment" "eks_cluster_policies" {
name = "EKSClusterPoliciesAttachment"
roles = [aws_iam_role.eks_cluster.name]
policy_arn = "arn:aws:iam::aws:policy/AmazonEKSClusterPolicy"
}
resource "aws_iam_policy_attachment" "eks_worker_node_policy_attachment" {
name = "EKSWorkerNodePolicyAttachment"
roles = [aws_iam_role.eks_cluster.name]
policy_arn = "arn:aws:iam::aws:policy/AmazonEKSWorkerNodePolicy"
}
resource "aws_iam_policy_attachment" "ecr_readonly_policy_attachment" {
name = "ECRReadonlyPolicyAttachment"
roles = [aws_iam_role.eks_cluster.name]
policy_arn = "arn:aws:iam::aws:policy/AmazonEC2ContainerRegistryReadOnly"
}
resource "aws_iam_policy_attachment" "ssm_policy_attachment" {
name = "AmazonSSMManagedInstanceCoreAttachment"
roles = [aws_iam_role.eks_cluster.name]
policy_arn = "arn:aws:iam::aws:policy/AmazonSSMManagedInstanceCore"
}
resource "aws_iam_policy_attachment" "eks_cni_policy_attachment" {
name = "AmazonEKSCNIPolicyAttachment"
roles = [aws_iam_role.eks_cluster.name]
policy_arn = "arn:aws:iam::aws:policy/AmazonEKS_CNI_Policy"
}
resource "aws_iam_policy_attachment" "eks_s3_policy_attachment" {
name = "AmazonEKSS3PolicyAttachment"
roles = [aws_iam_role.eks_cluster.name]
policy_arn = "arn:aws:iam::aws:policy/AmazonS3FullAccess"
}
#resource "aws_iam_policy_attachment" "eks_efs_csi_policy_attachment" {
# name = "AmazonEKS_EFS_CSI_DriverRole"
# roles = [aws_iam_role.eks_cluster.name]
# policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonEFSCSIDriverPolicy"
#}
resource "aws_iam_policy" "eks_worker_node_policy" {
name = "EKSWorkerNodePolicy"
policy = jsonencode({
Version = "2012-10-17",
Statement = [
{
Effect = "Allow",
Action = [
"autoscaling:DescribeAutoScalingGroups",
"autoscaling:DescribeAutoScalingInstances",
"autoscaling:DescribeLaunchConfigurations",
"autoscaling:DescribeTags",
"autoscaling:SetDesiredCapacity",
"autoscaling:TerminateInstanceInAutoScalingGroup",
"ec2:CreateNetworkInterface",
"ec2:DeleteNetworkInterface",
"eks:ListNodegroups",
"eks:AccessKubernetesApi",
"ecr:GetDownloadUrlForLayer",
"ecr:BatchGetImage",
"ecr:BatchCheckLayerAvailability",
],
Resource = "*",
}
],
})
}
resource "aws_iam_role_policy_attachment" "worker_node_policy_attachment" {
policy_arn = aws_iam_policy.eks_worker_node_policy.arn
role = aws_iam_role.eks_cluster.name
}
data "tls_certificate" "eks_cert" {
url = aws_eks_cluster.eks_cluster.identity[0].oidc[0].issuer
}
resource "aws_iam_openid_connect_provider" "eks_openid" {
client_id_list = ["sts.amazonaws.com"]
thumbprint_list = [data.tls_certificate.eks_cert.certificates[0].sha1_fingerprint]
url = data.tls_certificate.eks_cert.url
}
resource "aws_eks_node_group" "wp_node_group" {
cluster_name = aws_eks_cluster.eks_cluster.name
node_group_name = "wpNodeGroup"
node_role_arn = aws_iam_role.eks_cluster.arn
subnet_ids = [aws_subnet.wp_subnet_1.id]
instance_types = ["t3.medium"]
scaling_config {
desired_size = 1
max_size = 1
min_size = 1
}
update_config {
max_unavailable = 1
}
depends_on = [
aws_iam_role_policy_attachment.worker_node_policy_attachment,
aws_iam_policy_attachment.eks_cluster_policies,
aws_iam_policy_attachment.eks_worker_node_policy_attachment,
aws_iam_policy_attachment.ecr_readonly_policy_attachment,
]
}