Skip to content

Commit

Permalink
Merge pull request #8282 from r4f4/sdk-aws-compute-ssh-4.15
Browse files Browse the repository at this point in the history
[release-4.15] OCPBUGS-32383: sdk/aws: add ssh security group rule for compute
  • Loading branch information
openshift-merge-bot[bot] committed Apr 30, 2024
2 parents 2036e60 + 4d8a372 commit e29d44b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/infrastructure/aws/securitygroup.go
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,8 @@ func defaultWorkerSGIngressRules(workerSGID *string, masterSGID *string, cidrBlo
return []*ec2.IpPermission{
// worker icmp
createSGRule(workerSGID, "icmp", cidrBlocks, nil, -1, -1, false, nil),
// worker ssh
createSGRule(workerSGID, "tcp", cidrBlocks, nil, 22, 22, false, nil),
// worker vxlan
createSGRule(workerSGID, "udp", nil, nil, 4789, 4789, true, nil),
// worker geneve
Expand Down

0 comments on commit e29d44b

Please sign in to comment.