├── .gitignore ├── README.md ├── _config.yml ├── ansible └── README.md ├── images ├── img1.png ├── img10.png ├── img2.png ├── img3.png ├── img4.png ├── img5.png ├── img6.png ├── img7.png ├── img8.png └── img9.png ├── packer ├── README.md └── packer.json └── terraform └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /.idea/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/_config.yml -------------------------------------------------------------------------------- /ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/ansible/README.md -------------------------------------------------------------------------------- /images/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/images/img1.png -------------------------------------------------------------------------------- /images/img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/images/img10.png -------------------------------------------------------------------------------- /images/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/images/img2.png -------------------------------------------------------------------------------- /images/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/images/img3.png -------------------------------------------------------------------------------- /images/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/images/img4.png -------------------------------------------------------------------------------- /images/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/images/img5.png -------------------------------------------------------------------------------- /images/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/images/img6.png -------------------------------------------------------------------------------- /images/img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/images/img7.png -------------------------------------------------------------------------------- /images/img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/images/img8.png -------------------------------------------------------------------------------- /images/img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/images/img9.png -------------------------------------------------------------------------------- /packer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/packer/README.md -------------------------------------------------------------------------------- /packer/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/packer/packer.json -------------------------------------------------------------------------------- /terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolnagpal/infrastructure-as-code/HEAD/terraform/README.md --------------------------------------------------------------------------------