- Newest
- Most votes
- Most comments
The issue you're experiencing is related to your AWS account's vCPU limit, which is currently set to 1. This limit is in place to protect Free Tier users from unintentionally incurring costs by running multiple instances.
There seems to be a misunderstanding about the instance type you're trying to use. A t3.micro actually has 2 vCPUs, which exceeds your current limit of 1 vCPU. This is why you're encountering the error when trying to create your Elastic Beanstalk environment or EC2 instance.
Here are some steps to resolve this issue:
-
Request a quota increase: Go to the AWS Service Quotas console, navigate to the Amazon EC2 section, and look for "Running On-Demand Standard (A, C, D, H, I, M, R, T, Z) instances". Request an increase for that specific quota. Since your previous request was denied, provide more specific details about your educational use case.
-
Try a different instance type: Consider using a t2.micro instance instead, which has 1 vCPU and is also Free Tier eligible. This should work within your current vCPU limit.
-
Check for running instances: Ensure you don't have any other instances running or in a stopping state that might be consuming your vCPU quota.
-
Consider region-specific limits: Try creating your resources in a different AWS region, as vCPU limits can vary by region.
-
Wait and retry: If you've recently terminated instances, there might be a delay in freeing up resources. Wait a short while and try again.
For Elastic Beanstalk specifically, you might need to specify an instance type that fits within your vCPU limit when creating your environment.
If you continue to face issues after trying these steps, it would be worth contacting AWS Support again with a more detailed explanation of your educational requirements.
Sources
Unable to create more than one EC 2 instance | AWS re:Post
problem in creating Amazon EC2 instance | AWS re:Post
answered a year ago
Relevant content
asked 8 months ago
asked 10 months ago
