1 Answer
- Newest
- Most votes
- Most comments
1
Try accessing the logs directly using the AWS CLI to see if it's a problem with the AWS service or your environment.
aws logs describe-log-groups --region sa-east-1
If possible, try setting up the same configuration in a different AWS region. This can help determine if the issue is region-specific.
Ensure, Security Groups: Port 443 (HTTPS) is open for outbound traffic in the security group attached to your instance or environment.
VPC/Subnet Configuration: If your instance is within a VPC, ensure that your VPC routing table is configured correctly to allow outbound internet access (via an Internet Gateway or NAT Gateway).
Relevant content
- asked a year ago
- Accepted Answerasked 10 months ago
- Accepted Answerasked 9 months ago
- asked 2 years ago
- AWS OFFICIALUpdated 2 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago
VPC routing table was not configured correctly, thank you Deekshitha Urs.