Skip to content

Commit

Permalink
Internal ELB example (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
sekka1 authored Oct 8, 2021
1 parent d391a6a commit 4b792da
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# gateways:
# istio-ingressgateway:
# serviceAnnotations:
# # Setting to an internal load balancer
# # https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer
# service.beta.kubernetes.io/aws-load-balancer-internal: "true"
5 changes: 3 additions & 2 deletions terraform-environments/aws/dev/helm/istio/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,9 @@ provider "helm" {
module "istio" {
source = "github.com/ManagedKube/kubernetes-ops//terraform-modules/aws/istio?ref=v1.0.26"

helm_values_istio_base = file("${path.module}/istio_base_values.yaml")
helm_values_istiod = file("${path.module}/istiod_values.yaml")
helm_values_istio_base = file("${path.module}/istio_base_values.yaml")
helm_values_istiod = file("${path.module}/istiod_values.yaml")
helm_values_istio_ingress = file("${path.module}/istio_ingress_values.yaml")

depends_on = [
data.terraform_remote_state.eks
Expand Down

0 comments on commit 4b792da

Please sign in to comment.