hackoregon / civic-devops

Master collection point for issues, procedures, and code to manage the HackOregon Civic platform
MIT License
11 stars 4 forks source link

Update bastion host security group #162

Closed iant01 closed 6 years ago

iant01 commented 6 years ago

Correct the bastion hosts security group definition to properly enable ssh on port 22, not the service 22. The cloudformation yaml code was improperly setup should be: SecurityGroupIngress:

Allow access from anywhere to our Bastion Host

          - CidrIp: 0.0.0.0/0
            IpProtocol: TCP
            FromPort: 22
            ToPort: 22

not SecurityGroupIngress:

Allow access from anywhere to our Bastion Host

          - CidrIp: 0.0.0.0/0
            IpProtocol: 22
iant01 commented 6 years ago

merge pull request 34 submitted.

iant01 commented 6 years ago

Fixed with PR merge, closing.