Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why do I get "Your account does not support the EC2-Classic Platform in this region."?

Why would my account not support the EC2-Classic Platform?

All I am trying to do is create a Redshift database and I cannot get my client to connect.

like image 309
pezpezpez Avatar asked Feb 12 '15 16:02

pezpezpez


1 Answers

I guess you refer to the message in the "Security Group" section in the Security:

> Your account does not support the EC2-Classic Platform in this region. Cluster Security Groups are only available when the EC2-Classic Platform is supported. Instead, use VPC Security Groups to control access to your clusters. Go to the EC2 Console to view your VPC Security Groups. For more information, see Amazon Redshift Documentation on Supported Platforms and Managing Clusters in VPC. <<

What this says is that you don't have to worry about setting up a Security Group for EC2-Classic. Instead use a Security Group from the VPC Security Groups. You can select a Security Group for you Redshift cluster during create cluster or when you select to modify your cluster. Depending on your kind of connection to your AWS VPC (through VPN or Direct Connect or over the public internet) you have to chose the correct source IP address. Let's assume you go over the public Internet, then Redshift needs to have a public IP and the Security Group has to allow traffic from your public IP to the port you specified for Redshift. In case of VPN/DirectConnect a private IP would be most likely.

like image 177
Martin Schade Avatar answered Sep 28 '22 06:09

Martin Schade