S3 Bucket action doesn’t apply to any resources

From IAM docs, http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements.html#Action Some services do not let you specify actions for individual resources; instead, any actions that you list in the Action or NotAction element apply to all resources in that service. In these cases, you use the wildcard * in the Resource element. With this information, resource should have a value like … Read more

Difference between Amazon EC2 and AWS Elastic Beanstalk

First off, EC2 and Elastic Compute Cloud are the same thing. Next, AWS encompasses the range of Web Services that includes EC2 and Elastic Beanstalk. It also includes many others such as S3, RDS, DynamoDB, and all the others. EC2 EC2 is Amazon’s service that allows you to create a server (AWS calls these instances) in the AWS cloud. You pay … Read more

What is the difference between Amazon ECS and Amazon EC2?

Your question Is ECS just a docker install in EC2? If I already have a EC2, then I start a ECS, does it mean I have two instance? No. AWS ECS is just a logical grouping (cluster) of EC2 instances, and all the EC2 instances part of an ECS act as Docker host i.e. ECS can send command to launch a container on them (EC2). … Read more