diff --git a/README.md b/README.md index 5738c66..9dac2b0 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,9 @@ have a istio proxy configured, prevent communication with that pod.) which services are allowed to interact with other services. # CHANGELOG - +* 1.0.3 -- 2024-07-30 + - updated image module + - bumped version * 1.0.2 -- 2024-07-22 - updated istio chart/app to 1.22.3 - add force_delete and lifecycle policies to copy_images diff --git a/main.tf b/main.tf index cd5d0bd..7ea204d 100644 --- a/main.tf +++ b/main.tf @@ -130,7 +130,7 @@ resource "helm_release" "ingress" { set { name = "service.annotations.service\\.beta\\.kubernetes\\.io/aws-load-balancer-internal" - type = "string" + type = "string" value = "true" } @@ -138,7 +138,7 @@ resource "helm_release" "ingress" { name = "service.annotations.service\\.beta\\.kubernetes\\.io/aws-load-balancer-additional-resource-tags" value = join("\\,", [for key, value in local.tags : "${key}=${value}"]) } - + dynamic "set" { for_each = local.ports diff --git a/outputs.tf b/outputs.tf index fb00f1d..0349496 100644 --- a/outputs.tf +++ b/outputs.tf @@ -11,4 +11,3 @@ output "module_version" { description = "The version of this module." value = local._module_version } - diff --git a/version.tf b/version.tf index ae03194..888f639 100644 --- a/version.tf +++ b/version.tf @@ -1,5 +1,4 @@ locals { _module_name = "tfmod-istio" - _module_version = "1.0.2" - _module_providers = ["helm", "kubernetes"] + _module_version = "1.0.3" }