Page 36

Event Driven Security Automation on AWS

If your developers create their own infrastructure in minutes, who cares about security? In some organizations the security teams become the new bottleneck if the company wants to deploy every commit to production. Because manual reviews can’t be done f...

Read more

AWS Monthly Review - March 2016

AWS is innovating fast. This is a summary of what happened during past month. Announcements and News Happy Birthday AWS, 10 years of Cloud Computing. (AWS Blog Post) Referencing Security Groups in peered VPCs is possible even if the VPCs belong to diffe...

Read more

Security Templates for AWS CloudFormation

This page has moved to GitHub: https://github.com/widdix/aws-cf-templates/tree/master/security

Read more

Introducing the Object Store: S3

Back in the old days, data was managed as files in a hierarchy consisting of folders and files. The file was the representation of the data. In an object store, data is stored as objects. Each object consists of a globally unique identifier, some metada...

Read more

Optional Parameter in CloudFormation

Sometimes you want a CloudFormation Parameter to be optional. Unfortunately a blank Parameter contains an empty string. If you pass this empty string to e.g. the KeyName Property of an EC2 Instance or Launch Configuration you end up with a validation er...

Read more

Avoid Sharing Key Pairs for EC2

Lock and key devices are used by mankind for more than 6.000 years. Whether mechanical, electrical or digital, the concept stays the same: a key is needed to access resources behind a lock. Technology has made incredible progress since then. But one pro...

Read more

AWS Weekly 2016-08

The official AWS Week in Review gets longer and longer. This is a shortened version containing the most important news. Reference Security Groups in a peered VPC CloudWatch Events are Now Available in the eu-central-1 AWS CLI, AWS SDKs (JavaScript, Go,...

Read more

Protect AWS SDK calls with Bulkheads and Circuit Breakers

If you use one of the AWS SDKs to make queries to the AWS API you need to prepare for network unreliability. One of the AWS service that requires heavy SDK usage is DynamoDB (NoSQL database as a Service). I will use DynamoDB as an example in this post b...

Read more

Discovering Machine Learning with Iris flower data set

Today I want you to show how you can use the Amazon Machine Learning service to train (supervised learning) a model that can categorize data (multiclass classification). Introduction to Machine LearningGiven you have a spreadsheet with data, one column ...

Read more

Rolling Update with AWS CloudFormation

Updating all EC2 instances in an Auto Scaling Group becomes complex and expensive when done manually. If you follow the immutable infrastructure approach you will roll out a new version by creating new EC2 instances. You never change the old instances. ...

Read more