iplabs / terraform-kubernetes-aws-node-termination-handler

Terraform module to install the AWS Node Termination Handler

Home Page:https://registry.terraform.io/modules/iplabs/aws-node-termination-handler/kubernetes/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Applied state does not converge - perpetual diffs in daemonset `host_port`

nigelellis opened this issue · comments

Versions:

> terraform version
Terraform v0.13.2
+ provider registry.terraform.io/hashicorp/aws v3.3.0

When I apply this module the state doesn't converge. Running terraform plan after a successful terraform apply shows a diff:

 ~ port {
       container_port = 9092
     - host_port      = 9092 -> null
       name           = "prometheus"
       protocol       = "TCP"
   }

I've submitted a pull-request to always provide a matching host_port value of 9092. See #2

Thank you.