1
0

feat: minor updates

This commit is contained in:
xpk
2026-04-21 21:21:31 +08:00
parent 88396bceda
commit 5fd8aa807f
2 changed files with 12 additions and 1 deletions
+11
View File
@@ -186,6 +186,17 @@ module "eks" {
eks-pod-identity-agent = { eks-pod-identity-agent = {
preserve = false preserve = false
before_compute = true before_compute = true
# If your nodes does not allow ipv6, use the following to force the agent to bind to ipv4 only
# https://docs.aws.amazon.com/eks/latest/userguide/pod-id-agent-config-ipv6.html
# configuration_values = jsonencode(
# {
# "agent": {
# "additionalArgs": {
# "-b": "169.254.170.23"
# }
# }
# }
# )
} }
kube-proxy = {} kube-proxy = {}
aws-ebs-csi-driver = { aws-ebs-csi-driver = {
+1 -1
View File
@@ -67,7 +67,7 @@ variable "replication_dest_bucket_name" {
} }
variable "replication_destination_aws_account_id" { variable "replication_destination_aws_account_id" {
type = number type = string
default = null default = null
description = "AWS account id of replica bucket" description = "AWS account id of replica bucket"
} }