This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################## | |
| # This script setup whole infrastructure on AWS to run ec2 instance this will include VPC Setup | |
| # (Including : "VPC", "Subnet", "internet Gateway", "Route Table", "Security Group to allow SSH") | |
| # also it sets up EC2 Instance along with keypairs | |
| ############################## | |
| ### Provider Setup | |
| provider "aws" { | |
| region = "us-east-2" | |
| } | |
| ### Variables declearation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################################################################ | |
| # Author Mansur Ul Hasan | |
| # EMail : [email protected] | |
| # YouTube : https://www.youtube.com/user/mansur7820/about?view_as=subscriber | |
| # This script consist with State Full Web Server with Nginx using terraform | |
| # This script will setup | |
| # - VPC | |
| # - Subnets | |
| # - Route Tables |
OlderNewer