Skip to content

Commit

Permalink
hack/update-expected.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
hakman committed Mar 13, 2024
1 parent 79330c1 commit 68a768d
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion tests/integration/update_cluster/complex/kubernetes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,16 @@ resource "aws_security_group_rule" "from-0-0-0-0--0-ingress-tcp-443to443-masters
type = "ingress"
}

resource "aws_security_group_rule" "from-1-1-1-0--24-ingress-tcp-443to443-masters-complex-example-com" {
resource "aws_security_group_rule" "from-0-0-0-0--0-ingress-tcp-8443to8443-api-elb-complex-example-com" {
from_port = 8443
prefix_list_ids = ["pl-44444444"]
protocol = "tcp"
security_group_id = aws_security_group.api-elb-complex-example-com.id
to_port = 8443
type = "ingress"
}

resource "aws_security_group_rule" "from-1-1-1-0--24-ingress-tcp-443to443-api-elb-complex-example-com" {
cidr_blocks = ["1.1.1.0/24"]
from_port = 443
protocol = "tcp"
Expand All @@ -1045,6 +1054,15 @@ resource "aws_security_group_rule" "from-1-1-1-0--24-ingress-tcp-443to443-master
type = "ingress"
}

resource "aws_security_group_rule" "from-1-1-1-0--24-ingress-tcp-8443to8443-api-elb-complex-example-com" {
cidr_blocks = ["1.1.1.0/24"]
from_port = 8443
protocol = "tcp"
security_group_id = aws_security_group.api-elb-complex-example-com.id
to_port = 8443
type = "ingress"
}

resource "aws_security_group_rule" "from-1-1-1-1--32-ingress-tcp-22to22-masters-complex-example-com" {
cidr_blocks = ["1.1.1.1/32"]
from_port = 22
Expand Down

0 comments on commit 68a768d

Please sign in to comment.