8 posts tagged with "infrastructure-as-code"
Using CloudFormation to Automate Build, Test, and Deploy with CodePipeline (part 3)
Using Infrastructure as Code, we'll create a CodePipeline to build, test, and deploy a Node.js/Express app to an EC2 instance.
Read more →How to Use CDK Outputs in Your InSpec Tests
As a programmer, hard-coding values in my code, even test code, feels dirty and it's usually not a scalable practice. Instead of hard-coding resource IDs in your InSpec tests, you can add Outputs to a CDK app and push those values to a JSON file that your InSpec tests can use.
Read more →Provisioning an RDS Database with CloudFormation (part 2)
Using Infrastructure as Code, we'll add an Amazon RDS Postgresql database to the CloudFormation template we built in part 1 so that both the EC2 instance and the database can be provisioned together as a set of resources.
Read more →Provisioning an EC2 Instance with CloudFormation (part 1)
Using Infrastructure as Code, we'll automate the provisioning of an Amazon EC2 instance using AWS CloudFormation.
Read more →Convert Your CloudFormation template from JSON to YAML
Sometimes you have a JSON template you want to convert to YAML or vice versa, which is what I ran into today. AWS CloudFormation Template Flip is a command-line tool (and also a python library) you can use to convert a JSON template to YAML or the other way around.
Read more →Introduction to AWS CloudFormation
With Infrastructure as Code, you can scale quicker and easier, improve your quality, control your costs and risks, and know your infrastructure better. Today, we'll dive deeper with a look at AWS CloudFormation, an Infrastructure as Code framework. We'll cover templates, stacks, and change sets, and then take a look at five examples to demonstrate some of the foundational features to get started.
Read more →What is Infrastructure as Code?
Infrastructure as Code is the management of your infrastructure resources and their dependencies with code. In this post, we'll look at the benefits of using Infrastructure as Code over the manual and error-prone methods of the past, how it works, and some of the Infrastructure as Code framework choices you have.
Read more →Five resources to get started with AWS CloudFormation
AWS CloudFormation is a tool that allows you to manage and provision AWS infrastructure predictably and repeatedly with code. Here are five resources to help you get started with AWS CloudFormation.
Read more →