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 Oct 7, 2023
1 parent 1b5d742 commit 3306fd1
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tests/integration/update_cluster/minimal-dns-none/kubernetes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -1063,6 +1063,24 @@ resource "aws_security_group_rule" "icmpv6-pmtu-api-elb-__--0" {
type = "ingress"
}

resource "aws_security_group_rule" "kops-controller-elb-to-master" {
from_port = 3988
protocol = "tcp"
security_group_id = aws_security_group.masters-minimal-example-com.id
source_security_group_id = aws_security_group.api-elb-minimal-example-com.id
to_port = 3988
type = "ingress"
}

resource "aws_security_group_rule" "node-to-elb" {
from_port = 0
protocol = "-1"
security_group_id = aws_security_group.api-elb-minimal-example-com.id
source_security_group_id = aws_security_group.nodes-minimal-example-com.id
to_port = 0
type = "ingress"
}

resource "aws_sqs_queue" "minimal-example-com-nth" {
message_retention_seconds = 300
name = "minimal-example-com-nth"
Expand Down

0 comments on commit 3306fd1

Please sign in to comment.