-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
163 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,48 +3,45 @@ provider "aws" { | |
} | ||
|
||
locals { | ||
|
||
name = "clouddrove-eks" | ||
region = "eu-west-1" | ||
name = "clouddrove-eks" | ||
region = "eu-west-1" | ||
vpc_cidr_block = module.vpc.vpc_cidr_block | ||
environment = "test" | ||
label_order = ["name", "environment"] | ||
tags = { | ||
"kubernetes.io/cluster/${module.eks.cluster_name}" = "owned" | ||
} | ||
} | ||
|
||
################################################################################ | ||
# VPC | ||
# VPC module call | ||
################################################################################ | ||
|
||
module "vpc" { | ||
source = "clouddrove/vpc/aws" | ||
version = "2.0.0" | ||
|
||
name = "${local.name}-vpc" | ||
environment = "test" | ||
label_order = ["environment", "name"] | ||
|
||
cidr_block = "10.10.0.0/16" | ||
environment = local.environment | ||
cidr_block = "10.10.0.0/16" | ||
} | ||
|
||
# ################################################################################ | ||
# # Subnets | ||
# # Subnets moudle call | ||
# ################################################################################ | ||
|
||
module "subnets" { | ||
source = "clouddrove/subnet/aws" | ||
version = "2.0.0" | ||
|
||
name = "${local.name}-subnet" | ||
environment = "test" | ||
label_order = ["environment", "name"] | ||
|
||
name = "${local.name}-subnet" | ||
environment = local.environment | ||
nat_gateway_enabled = true | ||
single_nat_gateway = true | ||
availability_zones = ["${local.region}a", "${local.region}b", "${local.region}c"] | ||
vpc_id = module.vpc.vpc_id | ||
type = "public-private" | ||
igw_id = module.vpc.igw_id | ||
cidr_block = module.vpc.vpc_cidr_block | ||
cidr_block = local.vpc_cidr_block | ||
ipv6_cidr_block = module.vpc.ipv6_cidr_block | ||
enable_ipv6 = false | ||
|
||
|
@@ -126,40 +123,36 @@ module "subnets" { | |
} | ||
|
||
################################################################################ | ||
# Keypair | ||
# Keypair module call | ||
################################################################################ | ||
|
||
module "keypair" { | ||
source = "clouddrove/keypair/aws" | ||
version = "1.3.0" | ||
|
||
name = "${local.name}-key" | ||
environment = "test" | ||
label_order = ["name", "environment"] | ||
|
||
name = "${local.name}-key" | ||
environment = local.environment | ||
label_order = local.label_order | ||
enable_key_pair = true | ||
public_key = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDc4AjHFctUATtd5of4u9bJtTgkh9bKogSDjxc9QqbylRORxUa422jO+t1ldTVdyqDRKltxQCJb4v23HZc2kssU5uROxpiF2fzgiHXRduL+RtyOtY2J+rNUdCRmHz4WQySblYpgteIJZpVo2smwdek8xSpjoHXhgxxa9hb4pQQwyjtVGEdH8vdYwtxgPZgPVaJgHVeJgVmhjTf2VGTATaeR9txzHsEPxhe/n1y34mQjX0ygEX8x0RZzlGziD1ih3KPaIHcpTVSYYk4LOoMK38vEI67SIMomskKn4yU043s+t9ZriJwk2V9+oU6tJU/5E1rd0SskXUhTypc3/Znc/rkYtLe8s6Uy26LOrBFzlhnCT7YH1XbCv3rEO+Nn184T4BSHeW2up8UJ1SOEd+WzzynXczdXoQcBN2kaz4dYFpRXchsAB6ejZrbEq7wyZvutf11OiS21XQ67+30lEL2WAO4i95e4sI8AdgwJgzrqVcicr3ImE+BRDkndMn5k1LhNGqwMD3Iuoel84xvinPAcElDLiFmL3BJVA/53bAlUmWqvUGW9SL5JpLUmZgE6kp+Tps7D9jpooGGJKmqgJLkJTzAmTSJh0gea/rT5KwI4j169TQD9xl6wFqns4BdQ4dMKHQCgDx8LbEd96l9F9ruWwQ8EAZBe4nIEKTV9ri+04JVhSQ== [email protected]" | ||
} | ||
|
||
# ################################################################################ | ||
# Security Groups | ||
# Security Groups module call | ||
################################################################################ | ||
|
||
module "ssh" { | ||
source = "clouddrove/security-group/aws" | ||
version = "2.0.0" | ||
|
||
name = "${local.name}-ssh" | ||
environment = "test" | ||
label_order = ["environment", "name"] | ||
|
||
vpc_id = module.vpc.vpc_id | ||
environment = local.environment | ||
vpc_id = module.vpc.vpc_id | ||
new_sg_ingress_rules_with_cidr_blocks = [{ | ||
rule_count = 1 | ||
from_port = 22 | ||
protocol = "tcp" | ||
to_port = 22 | ||
cidr_blocks = [module.vpc.vpc_cidr_block, "172.16.0.0/16"] | ||
cidr_blocks = [local.vpc_cidr_block, "172.16.0.0/16"] | ||
description = "Allow ssh traffic." | ||
}, | ||
{ | ||
|
@@ -178,7 +171,7 @@ module "ssh" { | |
from_port = 22 | ||
protocol = "tcp" | ||
to_port = 22 | ||
cidr_blocks = [module.vpc.vpc_cidr_block, "172.16.0.0/16"] | ||
cidr_blocks = [local.vpc_cidr_block, "172.16.0.0/16"] | ||
description = "Allow ssh outbound traffic." | ||
}, | ||
{ | ||
|
@@ -196,8 +189,7 @@ module "http_https" { | |
version = "2.0.0" | ||
|
||
name = "${local.name}-http-https" | ||
environment = "test" | ||
label_order = ["name", "environment"] | ||
environment = local.environment | ||
|
||
vpc_id = module.vpc.vpc_id | ||
## INGRESS Rules | ||
|
@@ -206,23 +198,23 @@ module "http_https" { | |
from_port = 22 | ||
protocol = "tcp" | ||
to_port = 22 | ||
cidr_blocks = [module.vpc.vpc_cidr_block] | ||
cidr_blocks = [local.vpc_cidr_block] | ||
description = "Allow ssh traffic." | ||
}, | ||
{ | ||
rule_count = 2 | ||
from_port = 80 | ||
protocol = "tcp" | ||
to_port = 80 | ||
cidr_blocks = [module.vpc.vpc_cidr_block] | ||
cidr_blocks = [local.vpc_cidr_block] | ||
description = "Allow http traffic." | ||
}, | ||
{ | ||
rule_count = 3 | ||
from_port = 443 | ||
protocol = "tcp" | ||
to_port = 443 | ||
cidr_blocks = [module.vpc.vpc_cidr_block] | ||
cidr_blocks = [local.vpc_cidr_block] | ||
description = "Allow https traffic." | ||
} | ||
] | ||
|
@@ -241,15 +233,15 @@ module "http_https" { | |
} | ||
|
||
################################################################################ | ||
# KMS Module | ||
# KMS Module call | ||
################################################################################ | ||
module "kms" { | ||
source = "clouddrove/kms/aws" | ||
version = "1.3.0" | ||
|
||
name = "${local.name}-kmss" | ||
environment = "test" | ||
label_order = ["environment", "name"] | ||
environment = local.environment | ||
label_order = local.label_order | ||
enabled = true | ||
description = "KMS key for EBS of EKS nodes" | ||
enable_key_rotation = false | ||
|
@@ -272,33 +264,26 @@ data "aws_iam_policy_document" "kms" { | |
} | ||
|
||
################################################################################ | ||
# EKS Module | ||
# EKS Module call | ||
################################################################################ | ||
|
||
module "eks" { | ||
source = "../.." | ||
enabled = true | ||
|
||
name = local.name | ||
environment = "test" | ||
label_order = ["environment", "name"] | ||
environment = local.environment | ||
label_order = local.label_order | ||
|
||
# EKS | ||
kubernetes_version = "1.27" | ||
endpoint_private_access = true | ||
endpoint_public_access = true | ||
enabled_cluster_log_types = ["api", "audit", "authenticator", "controllerManager", "scheduler"] | ||
|
||
kubernetes_version = "1.27" | ||
endpoint_public_access = true | ||
# Networking | ||
vpc_id = module.vpc.vpc_id | ||
subnet_ids = module.subnets.private_subnet_id | ||
allowed_security_groups = [module.ssh.security_group_id] | ||
eks_additional_security_group_ids = ["${module.ssh.security_group_id}", "${module.http_https.security_group_id}"] | ||
allowed_cidr_blocks = ["10.0.0.0/16"] | ||
|
||
################################################################################ | ||
# AWS Managed Node Group | ||
################################################################################ | ||
# Node Groups Defaults Values It will Work all Node Groups | ||
managed_node_group_defaults = { | ||
subnet_ids = module.subnets.private_subnet_id | ||
|
@@ -327,7 +312,7 @@ module "eks" { | |
name = "${module.eks.cluster_name}-critical" | ||
capacity_type = "SPOT" | ||
min_size = 1 | ||
max_size = 7 | ||
max_size = 2 | ||
desired_size = 2 | ||
instance_types = ["t3.medium"] | ||
} | ||
|
@@ -336,32 +321,12 @@ module "eks" { | |
name = "${module.eks.cluster_name}-application" | ||
capacity_type = "SPOT" | ||
min_size = 1 | ||
max_size = 7 | ||
max_size = 2 | ||
desired_size = 1 | ||
force_update_version = true | ||
instance_types = ["t3.medium"] | ||
} | ||
} | ||
|
||
# -- Enable Add-Ons in EKS Cluster | ||
addons = [ | ||
{ | ||
addon_name = "coredns" | ||
addon_version = "v1.10.1-eksbuild.2" | ||
resolve_conflicts = "OVERWRITE" | ||
}, | ||
{ | ||
addon_name = "kube-proxy" | ||
addon_version = "v1.27.3-eksbuild.2" | ||
resolve_conflicts = "OVERWRITE" | ||
}, | ||
{ | ||
addon_name = "vpc-cni" | ||
addon_version = "v1.13.4-eksbuild.1" | ||
resolve_conflicts = "OVERWRITE" | ||
}, | ||
] | ||
|
||
# -- Set this to `true` only when you have correct iam_user details. | ||
apply_config_map_aws_auth = true | ||
map_additional_iam_users = [ | ||
|
@@ -372,11 +337,7 @@ module "eks" { | |
} | ||
] | ||
} | ||
|
||
################################################################################ | ||
# Kubernetes provider configuration | ||
################################################################################ | ||
|
||
## Kubernetes provider configuration | ||
data "aws_eks_cluster" "this" { | ||
depends_on = [module.eks] | ||
name = module.eks.cluster_id | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# Terraform version | ||
terraform { | ||
required_version = ">= 1.5.0" | ||
required_version = ">= 1.5.4" | ||
|
||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 5.5.0" | ||
version = ">= 5.11.0" | ||
} | ||
} | ||
} |
Oops, something went wrong.