Skip to content

Instantly share code, notes, and snippets.

View rahulwaykos's full-sized avatar

rahulwaykos

View GitHub Profile
apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: 3idiots
spec:
schedule: "*/1 * * * *"
jobTemplate:
spec:
template:
spec:

Terraform-Ansible-AWS-Nginx

terraform

In this blog, we are going to deploy Nginx Server on AWS instance by using Terraform and Ansible. Before dive into actual process lets look at some basics.

What is Terraform?

Terraform is an open-source infrastructure as code software tool created by HashiCorp. It is a tool for building, changing, and versioning infrastructure safely and efficiently. Terraform can manage existing and popular service providers as well as custom in-house solutions. Terraform manages external resources such as public cloud infrastructure, private cloud infrastructure, network appliances, software as a service, and platform as a service with providers. In this blog we are going to manage resources of Public Cloud- AWS.

What is Ansible?