mirror of
https://github.com/terraform-aws-modules/terraform-aws-eks.git
synced 2025-09-09 19:32:58 +08:00
416515a0da
* feat!: Upgrade min AWS provider and Terraform versions to `6.0` and `1.5.7` respectively * fix: Remove deprecated arguments in AWS v6.0 provider, upgrade Helm provider to v3.0, bump VPC module to v6.0 * fix: Remove `aws-auth` sub-module * fix: Remove `platform` and `cluster_service_ipv4_cidr` variables from `user-data` sub-module * fix: Resolve all marked `todos` that have been accumulated * fix: Set default `http_put_response_hop_limit` to `1` * fix: Remove IRSA support from Karpenter sub-module * fix: Avoid making GET requests from data sources unless absolutely necessary * feat: Add variable optional attribute definitions * feat: Bump KMS key module version to latest, add remaining variable attribute definitions * fix: Remove `cluster_` prefix from variable names to better match the underlying API * fix: Move all EFA logic to the nodegroup itself * fix: Remove arguments that do not make sense in EKS * fix: Updates from plan validation * fix: Remove more self-managed node group attributes that are commonly not used in EKS clusters * fix: Remove data plane compute `*_defaults` variables that do not work with variable optional attributes * fix: Ignore changes to `bootstrap_self_managed_addons` to aid in upgrade * feat: Add support for `region` argument on relevant resources * feat: Initial pass on upgrade guide * fix: Updates from testing and validating EKS managed node group * fix: Updates from testing and validating self-managed node group * docs: Ensure addon ussage documented is aligned * feat: Switch to dualstack OIDC issuer URL * feat: Allow sourcing over overriding the Karpenter assume role policy * fix: Use `Bool` instead of `StringEquals` for DenyHTTP queue policy * fix: Correct use of `nullable` and default value propagation
149 lines
3.6 KiB
Terraform
149 lines
3.6 KiB
Terraform
provider "aws" {
|
|
region = local.region
|
|
}
|
|
|
|
provider "helm" {
|
|
kubernetes = {
|
|
host = module.eks.cluster_endpoint
|
|
cluster_ca_certificate = base64decode(module.eks.cluster_certificate_authority_data)
|
|
|
|
exec = {
|
|
api_version = "client.authentication.k8s.io/v1beta1"
|
|
command = "aws"
|
|
# This requires the awscli to be installed locally where Terraform is executed
|
|
args = ["eks", "get-token", "--cluster-name", module.eks.cluster_name]
|
|
}
|
|
}
|
|
}
|
|
|
|
locals {
|
|
name = "ex-${basename(path.cwd)}"
|
|
region = "us-west-2"
|
|
|
|
kubernetes_version = "1.33"
|
|
|
|
tags = {
|
|
Test = local.name
|
|
GithubRepo = "terraform-aws-eks"
|
|
GithubOrg = "terraform-aws-modules"
|
|
}
|
|
}
|
|
|
|
################################################################################
|
|
# EKS Cluster
|
|
################################################################################
|
|
|
|
module "eks" {
|
|
source = "../.."
|
|
|
|
name = local.name
|
|
kubernetes_version = local.kubernetes_version
|
|
|
|
endpoint_public_access = true
|
|
enable_cluster_creator_admin_permissions = true
|
|
|
|
addons = {
|
|
coredns = {}
|
|
eks-pod-identity-agent = {}
|
|
kube-proxy = {}
|
|
}
|
|
|
|
create_node_security_group = false
|
|
security_group_additional_rules = {
|
|
hybrid-all = {
|
|
cidr_blocks = [local.remote_network_cidr]
|
|
description = "Allow all traffic from remote node/pod network"
|
|
from_port = 0
|
|
to_port = 0
|
|
protocol = "all"
|
|
type = "ingress"
|
|
}
|
|
}
|
|
|
|
compute_config = {
|
|
enabled = true
|
|
node_pools = ["system"]
|
|
}
|
|
|
|
access_entries = {
|
|
hybrid-node-role = {
|
|
principal_arn = module.eks_hybrid_node_role.arn
|
|
type = "HYBRID_LINUX"
|
|
}
|
|
}
|
|
|
|
vpc_id = module.vpc.vpc_id
|
|
subnet_ids = module.vpc.private_subnets
|
|
|
|
remote_network_config = {
|
|
remote_node_networks = {
|
|
cidrs = [local.remote_node_cidr]
|
|
}
|
|
remote_pod_networks = {
|
|
cidrs = [local.remote_pod_cidr]
|
|
}
|
|
}
|
|
|
|
tags = local.tags
|
|
}
|
|
|
|
################################################################################
|
|
# VPC
|
|
################################################################################
|
|
|
|
locals {
|
|
vpc_cidr = "10.0.0.0/16"
|
|
azs = slice(data.aws_availability_zones.available.names, 0, 3)
|
|
}
|
|
|
|
data "aws_availability_zones" "available" {
|
|
# Exclude local zones
|
|
filter {
|
|
name = "opt-in-status"
|
|
values = ["opt-in-not-required"]
|
|
}
|
|
}
|
|
|
|
module "vpc" {
|
|
source = "terraform-aws-modules/vpc/aws"
|
|
version = "~> 6.0"
|
|
|
|
name = local.name
|
|
cidr = local.vpc_cidr
|
|
|
|
azs = local.azs
|
|
private_subnets = [for k, v in local.azs : cidrsubnet(local.vpc_cidr, 4, k)]
|
|
public_subnets = [for k, v in local.azs : cidrsubnet(local.vpc_cidr, 8, k + 48)]
|
|
intra_subnets = [for k, v in local.azs : cidrsubnet(local.vpc_cidr, 8, k + 52)]
|
|
|
|
enable_nat_gateway = true
|
|
single_nat_gateway = true
|
|
|
|
public_subnet_tags = {
|
|
"kubernetes.io/role/elb" = 1
|
|
}
|
|
|
|
private_subnet_tags = {
|
|
"kubernetes.io/role/internal-elb" = 1
|
|
}
|
|
|
|
tags = local.tags
|
|
}
|
|
|
|
################################################################################
|
|
# VPC Peering Connection
|
|
################################################################################
|
|
|
|
resource "aws_vpc_peering_connection_accepter" "peer" {
|
|
vpc_peering_connection_id = aws_vpc_peering_connection.remote_node.id
|
|
auto_accept = true
|
|
|
|
tags = local.tags
|
|
}
|
|
|
|
resource "aws_route" "peer" {
|
|
route_table_id = one(module.vpc.private_route_table_ids)
|
|
destination_cidr_block = local.remote_network_cidr
|
|
vpc_peering_connection_id = aws_vpc_peering_connection.remote_node.id
|
|
}
|