diff --git a/README.md b/README.md index f905e0a..1c0742d 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,6 @@ module "eks_bootstrap" { ipv6_enabled = true kms_key_arn = "arn:aws:kms:region:222222222222:key/kms_key_arn" keda_enabled = true - istio_enabled = false kms_policy_arn = "arn:aws:iam::222222222222:policy/kms_policy_arn" ## eks module will create kms_policy_arn eks_cluster_name = "cluster_name" reloader_enabled = true @@ -36,6 +35,17 @@ module "eks_bootstrap" { amazon_eks_vpc_cni_enabled = true cluster_autoscaler_enabled = true service_monitor_crd_enabled = true + istio_enabled = false + istio_config = { + ingress_gateway_enabled = true + ingress_gateway_namespace = "istio-ingressgateway" + egress_gateway_enabled = true + egress_gateway_namespace = "istio-egressgateway" + observability_enabled = true + envoy_access_logs_enabled = true + prometheus_monitoring_enabled = true + cert_manager_cluster_issuer_enabled = true + } karpenter_provisioner_enabled = true karpenter_provisioner_config = { private_subnet_name = "private_subnet_name" diff --git a/examples/complete/README.md b/examples/complete/README.md index a6f1b47..19829c5 100644 --- a/examples/complete/README.md +++ b/examples/complete/README.md @@ -5,7 +5,7 @@ ### [SquareOps Technologies](https://squareops.com/) Your DevOps Partner for Accelerating cloud journey.
-This example will be very useful for users who are new to a module and want to quickly learn how to use it. By reviewing the examples, users can gain a better understanding of how the module works, what features it supports, and how to customize it to their specific needs. +This example is useful for users who are new to a module and want to quickly learn how to use it. By reviewing the examples, users can gain a better understanding of how the module works, what features it supports, and how to customize it to their specific needs.
## Requirements