├── README.md └── code ├── ami_datasource.tf ├── ec2-private_module.tf ├── ec2-public_module.tf ├── ec2.auto.tfvars ├── ec2_outputs.tf ├── ec2_vars.tf ├── elasticip_resource.tf ├── generic_vars.tf ├── local.tf ├── nullresource_provisioners.tf ├── providers.tf ├── securitygroup-private_module.tf ├── securitygroup-public_module.tf ├── securitygroup_outputs.tf ├── terraform.tfvars ├── vpc.auto.tfvars ├── vpc_module.tf ├── vpc_outputs.tf ├── vpc_vars.tf └── webapp.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/README.md -------------------------------------------------------------------------------- /code/ami_datasource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/ami_datasource.tf -------------------------------------------------------------------------------- /code/ec2-private_module.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/ec2-private_module.tf -------------------------------------------------------------------------------- /code/ec2-public_module.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/ec2-public_module.tf -------------------------------------------------------------------------------- /code/ec2.auto.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/ec2.auto.tfvars -------------------------------------------------------------------------------- /code/ec2_outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/ec2_outputs.tf -------------------------------------------------------------------------------- /code/ec2_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/ec2_vars.tf -------------------------------------------------------------------------------- /code/elasticip_resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/elasticip_resource.tf -------------------------------------------------------------------------------- /code/generic_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/generic_vars.tf -------------------------------------------------------------------------------- /code/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/local.tf -------------------------------------------------------------------------------- /code/nullresource_provisioners.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/nullresource_provisioners.tf -------------------------------------------------------------------------------- /code/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/providers.tf -------------------------------------------------------------------------------- /code/securitygroup-private_module.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/securitygroup-private_module.tf -------------------------------------------------------------------------------- /code/securitygroup-public_module.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/securitygroup-public_module.tf -------------------------------------------------------------------------------- /code/securitygroup_outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/securitygroup_outputs.tf -------------------------------------------------------------------------------- /code/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/terraform.tfvars -------------------------------------------------------------------------------- /code/vpc.auto.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/vpc.auto.tfvars -------------------------------------------------------------------------------- /code/vpc_module.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/vpc_module.tf -------------------------------------------------------------------------------- /code/vpc_outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/vpc_outputs.tf -------------------------------------------------------------------------------- /code/vpc_vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/vpc_vars.tf -------------------------------------------------------------------------------- /code/webapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-abukar/3-tier-architecture-iac/HEAD/code/webapp.sh --------------------------------------------------------------------------------