Ver código fonte

ensure we allow health checking

Chris Mague 3 anos atrás
pai
commit
4081a7c84c
1 arquivos alterados com 7 adições e 0 exclusões
  1. 7 0
      variables.tf

+ 7 - 0
variables.tf

@@ -261,6 +261,13 @@ variable "internal-rules" {
       protocol  = "udp"
       comment   = "Let UDP out to the VPC"
     },
+    {
+      type      = "ingress"
+      from_port = "8080"
+      to_port   = "8080"
+      protocol  = "tcp"
+      comment   = "Allow for host check between nodes"
+    },
   ]
 }