Re-run terraform fmt for formatting

This commit is contained in:
Dalton Hubble
2018-05-14 23:38:16 -07:00
parent c2b719dc75
commit 983489bb52
5 changed files with 13 additions and 13 deletions

View File

@ -94,10 +94,10 @@ resource "aws_security_group_rule" "controller-node-exporter" {
resource "aws_security_group_rule" "controller-kubelet" {
security_group_id = "${aws_security_group.controller.id}"
type = "ingress"
protocol = "tcp"
from_port = 10250
to_port = 10250
type = "ingress"
protocol = "tcp"
from_port = 10250
to_port = 10250
source_security_group_id = "${aws_security_group.worker.id}"
}