- Newest
- Most votes
- Most comments
Hello.
Where is Mongo DB managed?
If Mongo DB is installed on EC2, I think there will be no problem just by allowing the EC2 security group of the AutoScaling group in the security group.
https://docs.aws.amazon.com/vpc/latest/userguide/security-group-rules.html#security-group-referencing
If Mongo DB exists on-premises and provides public access, you can fix the IP address by creating a NAT Gateway within the VPC and directing EC2 communication via the NAT Gateway.
https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-basics
If you are accessing on-premises via VPN, I think you can use a method to allow VPC CIDR.
There is a related post that helped me: https://serverfault.com/questions/664960/aws-public-subnet-autoscaling-group-with-outbound-nat
Relevant content
- Accepted Answerasked 7 months ago
- asked 5 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 8 months ago
- AWS OFFICIALUpdated 3 years ago
Thank you! Made it working with NAT gateway ^^