Skip to content

Commit 9c888bc

Browse files
author
Ciprian Hacman
committed
Update expected outputs of integration tests
1 parent d0349fd commit 9c888bc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

tests/integration/update_cluster/bastionadditional_user-data/kubernetes.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -753,12 +753,12 @@ resource "aws_security_group_rule" "node-to-master-tcp-1-2379" {
753753
type = "ingress"
754754
}
755755

756-
resource "aws_security_group_rule" "node-to-master-tcp-2382-4001" {
756+
resource "aws_security_group_rule" "node-to-master-tcp-2382-4000" {
757757
from_port = 2382
758758
protocol = "tcp"
759759
security_group_id = aws_security_group.masters-bastionuserdata-example-com.id
760760
source_security_group_id = aws_security_group.nodes-bastionuserdata-example-com.id
761-
to_port = 4001
761+
to_port = 4000
762762
type = "ingress"
763763
}
764764

tests/integration/update_cluster/privatecalico/cloudformation.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@
847847
"IpProtocol": "tcp"
848848
}
849849
},
850-
"AWSEC2SecurityGroupIngressnodetomastertcp23824001": {
850+
"AWSEC2SecurityGroupIngressnodetomastertcp23824000": {
851851
"Type": "AWS::EC2::SecurityGroupIngress",
852852
"Properties": {
853853
"GroupId": {
@@ -857,7 +857,7 @@
857857
"Ref": "AWSEC2SecurityGroupnodesprivatecalicoexamplecom"
858858
},
859859
"FromPort": 2382,
860-
"ToPort": 4001,
860+
"ToPort": 4000,
861861
"IpProtocol": "tcp"
862862
}
863863
},

tests/integration/update_cluster/privatecalico/kubernetes.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -752,12 +752,12 @@ resource "aws_security_group_rule" "node-to-master-tcp-1-2379" {
752752
type = "ingress"
753753
}
754754

755-
resource "aws_security_group_rule" "node-to-master-tcp-2382-4001" {
755+
resource "aws_security_group_rule" "node-to-master-tcp-2382-4000" {
756756
from_port = 2382
757757
protocol = "tcp"
758758
security_group_id = aws_security_group.masters-privatecalico-example-com.id
759759
source_security_group_id = aws_security_group.nodes-privatecalico-example-com.id
760-
to_port = 4001
760+
to_port = 4000
761761
type = "ingress"
762762
}
763763

0 commit comments

Comments
 (0)