├── .gitignore ├── README.md ├── goapp_source_codes ├── .gitignore ├── Dockerfile ├── README.md ├── buildspec.yml ├── go.mod ├── go.sum └── main.go ├── nodeapp_source_codes ├── .DS_Store ├── .gitignore ├── Dockerfile ├── README.md ├── buildspec.yml ├── index.js ├── package-lock.json └── package.json ├── pythonapp_source_codes ├── .gitignore ├── Dockerfile ├── README.md ├── buildspec.yml ├── index.py └── requirements.txt └── terraform_infra_deployment ├── .DS_Store ├── .gitignore ├── .terraform.lock.hcl ├── README.md ├── graph.png ├── graph.svg ├── main.tf ├── outputs.tf ├── plan.out ├── terra-graph.png └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/README.md -------------------------------------------------------------------------------- /goapp_source_codes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/goapp_source_codes/.gitignore -------------------------------------------------------------------------------- /goapp_source_codes/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/goapp_source_codes/Dockerfile -------------------------------------------------------------------------------- /goapp_source_codes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/goapp_source_codes/README.md -------------------------------------------------------------------------------- /goapp_source_codes/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/goapp_source_codes/buildspec.yml -------------------------------------------------------------------------------- /goapp_source_codes/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/goapp_source_codes/go.mod -------------------------------------------------------------------------------- /goapp_source_codes/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/goapp_source_codes/go.sum -------------------------------------------------------------------------------- /goapp_source_codes/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/goapp_source_codes/main.go -------------------------------------------------------------------------------- /nodeapp_source_codes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/nodeapp_source_codes/.DS_Store -------------------------------------------------------------------------------- /nodeapp_source_codes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/nodeapp_source_codes/.gitignore -------------------------------------------------------------------------------- /nodeapp_source_codes/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/nodeapp_source_codes/Dockerfile -------------------------------------------------------------------------------- /nodeapp_source_codes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/nodeapp_source_codes/README.md -------------------------------------------------------------------------------- /nodeapp_source_codes/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/nodeapp_source_codes/buildspec.yml -------------------------------------------------------------------------------- /nodeapp_source_codes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/nodeapp_source_codes/index.js -------------------------------------------------------------------------------- /nodeapp_source_codes/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/nodeapp_source_codes/package-lock.json -------------------------------------------------------------------------------- /nodeapp_source_codes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/nodeapp_source_codes/package.json -------------------------------------------------------------------------------- /pythonapp_source_codes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/pythonapp_source_codes/.gitignore -------------------------------------------------------------------------------- /pythonapp_source_codes/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/pythonapp_source_codes/Dockerfile -------------------------------------------------------------------------------- /pythonapp_source_codes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/pythonapp_source_codes/README.md -------------------------------------------------------------------------------- /pythonapp_source_codes/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/pythonapp_source_codes/buildspec.yml -------------------------------------------------------------------------------- /pythonapp_source_codes/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/pythonapp_source_codes/index.py -------------------------------------------------------------------------------- /pythonapp_source_codes/requirements.txt: -------------------------------------------------------------------------------- 1 | # Usage: pip install -r requirements.txt 2 | Flask==1.0.2 -------------------------------------------------------------------------------- /terraform_infra_deployment/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/terraform_infra_deployment/.DS_Store -------------------------------------------------------------------------------- /terraform_infra_deployment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/terraform_infra_deployment/.gitignore -------------------------------------------------------------------------------- /terraform_infra_deployment/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/terraform_infra_deployment/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform_infra_deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/terraform_infra_deployment/README.md -------------------------------------------------------------------------------- /terraform_infra_deployment/graph.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform_infra_deployment/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/terraform_infra_deployment/graph.svg -------------------------------------------------------------------------------- /terraform_infra_deployment/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/terraform_infra_deployment/main.tf -------------------------------------------------------------------------------- /terraform_infra_deployment/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/terraform_infra_deployment/outputs.tf -------------------------------------------------------------------------------- /terraform_infra_deployment/plan.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/terraform_infra_deployment/plan.out -------------------------------------------------------------------------------- /terraform_infra_deployment/terra-graph.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform_infra_deployment/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd031/microservice-cicd-project-with-terraform/HEAD/terraform_infra_deployment/variables.tf --------------------------------------------------------------------------------