Skip to content

Commit

Permalink
Update expected outputs of integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciprian Hacman committed Oct 9, 2020
1 parent d0349fd commit 9c888bc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -753,12 +753,12 @@ resource "aws_security_group_rule" "node-to-master-tcp-1-2379" {
type = "ingress"
}

resource "aws_security_group_rule" "node-to-master-tcp-2382-4001" {
resource "aws_security_group_rule" "node-to-master-tcp-2382-4000" {
from_port = 2382
protocol = "tcp"
security_group_id = aws_security_group.masters-bastionuserdata-example-com.id
source_security_group_id = aws_security_group.nodes-bastionuserdata-example-com.id
to_port = 4001
to_port = 4000
type = "ingress"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@
"IpProtocol": "tcp"
}
},
"AWSEC2SecurityGroupIngressnodetomastertcp23824001": {
"AWSEC2SecurityGroupIngressnodetomastertcp23824000": {
"Type": "AWS::EC2::SecurityGroupIngress",
"Properties": {
"GroupId": {
Expand All @@ -857,7 +857,7 @@
"Ref": "AWSEC2SecurityGroupnodesprivatecalicoexamplecom"
},
"FromPort": 2382,
"ToPort": 4001,
"ToPort": 4000,
"IpProtocol": "tcp"
}
},
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/update_cluster/privatecalico/kubernetes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -752,12 +752,12 @@ resource "aws_security_group_rule" "node-to-master-tcp-1-2379" {
type = "ingress"
}

resource "aws_security_group_rule" "node-to-master-tcp-2382-4001" {
resource "aws_security_group_rule" "node-to-master-tcp-2382-4000" {
from_port = 2382
protocol = "tcp"
security_group_id = aws_security_group.masters-privatecalico-example-com.id
source_security_group_id = aws_security_group.nodes-privatecalico-example-com.id
to_port = 4001
to_port = 4000
type = "ingress"
}

Expand Down

0 comments on commit 9c888bc

Please sign in to comment.