- Views: 17
- Report Article
- Articles
- Computers
- Software
Aws Role In The Implementation Of "Infrastructure As Code" (IaC) in DevOps
Posted: Mar 18, 2019
Infrastructure as code is a concept in DevOps which says "it’s equally easy to maintain your operations environment as it is easy to maintain code". You don’t need to manually do the changes in configurations of an environment just as you do in application development. Infrastructure would be treated the same way as a developer treats its code base.
IAC - Case Study
If I would be given a chance to explain IAC to a lame person then that would be a case study which says: Whenever a new resource joins a team and he or she gets a new machine to work on. Now earlier the IT staff has to manually go and do the configurations so that the machine has all the essential stuff which that resource requires. But with IAC, a code would do the configuration in the new machine. The code should be executed on the machine and the job is done! Even, this code will continuously execute on the machine and will see if the machine doesn’t diverge from the desired state. In this way, a single admin can do configuration of hundreds of machines at the same time.
How can AWS help in the implementation of IAC?
AWS CloudFormation is a configuration orchestration tool provided by Amazon Web services, which is actually going to help you in the implementation of IAC. It will help you in coding your infrastructure so that you can automate all the developments and reduce the manual efforts introduced. You have to create cloudFormation templates with YAML and JSON.
A template is basically a text file which has all AWs and non-AWS resources to run your application. Whenever a template is submitted then CloudFormation creates all the necessary resources defined by the customer. It then builds an EC2 instance which would be based on the requirement defined by the admin or network operator. This running instance E2 is generally called a stack. Basically, a stack is a collection of resources which can be managed as a single unit. Let’s see one template which looks very simple but can be used for created an s3 bucket.
AWSTemplateFormatVersion: 2010-09-09
Description: Bucket Stack
Resources:
S3Bucket:
Type: AWS::S3::Bucket
Properties:
BucketName: my-bucket
Format Version is the AWS CloudFormation template version that your template points to. You should include this in your template as you would get this as a reference in future templated whenever a new template is released. The description is an optional key but it is good to write as it provides additional information about your template. You can have the resources section as parameters which you are providing to your template to create or update a stack. You have S3 bucket name, type, IP address range and etc.
CloudFormation with other configuration management tools FOR iAC implementationCloudFormation is a configuration orchestration tool which can be used to automate the deployments on the servers. You can use any other configuration management tools like Chef and Puppet to configure the software and systems. Suppose if you want to build an application on AWS platform, you can easily choose a simple CloudFormation template and then it will create the resources to build the application. You can easily manage creation, updating and deletion operations of resources with CloudFormation. You can set up a configuration management tool to set up the OS on the instance created by cloudFormation. With both tools in combination, you can automate the configuration and deployments which make implementation of IAC very easy. Your machines will then be considered as IAC.
AWS CloudFormation uses in IAC
Conclusion
So, you have gone through one of the important tools to implement IAC. You can imagine how the deployments and configurations can become a job of a few seconds and this is basically IAC where manual efforts have become considerably less. You can manage the deployments and configurations of your network easily and with additional features of rollback and security. With CloudFormation, you rarely have to worry about updates from Amazon. You can easily manage your network as code with the help of AWS Consulting Services and AWS CloudFormation.
Ridhi Arora is a weight loss success story who enjoys living a healthy lifestyle. including the posts on her own site, My Health Care Tips