Skip to content

Commit

Permalink
Added Istio configuration in README
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharthbarhate committed Jul 24, 2023
1 parent 60794ff commit 5e31bad
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

### [SquareOps Technologies](https://squareops.com/) Your DevOps Partner for Accelerating cloud journey.
<br>
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.
<br>
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
## Requirements
Expand Down

0 comments on commit 5e31bad

Please sign in to comment.