├── .gitignore ├── LICENSE ├── README.md ├── kubernetes └── deployments │ ├── Auth.yaml │ ├── Blogs.yaml │ ├── Comments.yaml │ ├── Frontend.yaml │ ├── Graph.yaml │ └── Users.yaml └── terraform ├── ecr ├── main.tf └── variables.tf └── ecs ├── ec2.tf ├── ecs.sh ├── main.tf ├── terraform.tfstate ├── variables.tf └── vpc.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/README.md -------------------------------------------------------------------------------- /kubernetes/deployments/Auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/kubernetes/deployments/Auth.yaml -------------------------------------------------------------------------------- /kubernetes/deployments/Blogs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/kubernetes/deployments/Blogs.yaml -------------------------------------------------------------------------------- /kubernetes/deployments/Comments.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/kubernetes/deployments/Comments.yaml -------------------------------------------------------------------------------- /kubernetes/deployments/Frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/kubernetes/deployments/Frontend.yaml -------------------------------------------------------------------------------- /kubernetes/deployments/Graph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/kubernetes/deployments/Graph.yaml -------------------------------------------------------------------------------- /kubernetes/deployments/Users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/kubernetes/deployments/Users.yaml -------------------------------------------------------------------------------- /terraform/ecr/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/terraform/ecr/main.tf -------------------------------------------------------------------------------- /terraform/ecr/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/terraform/ecr/variables.tf -------------------------------------------------------------------------------- /terraform/ecs/ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/terraform/ecs/ec2.tf -------------------------------------------------------------------------------- /terraform/ecs/ecs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/terraform/ecs/ecs.sh -------------------------------------------------------------------------------- /terraform/ecs/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/terraform/ecs/main.tf -------------------------------------------------------------------------------- /terraform/ecs/terraform.tfstate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/ecs/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/terraform/ecs/variables.tf -------------------------------------------------------------------------------- /terraform/ecs/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkySingh04/Haalsamachar-infra/HEAD/terraform/ecs/vpc.tf --------------------------------------------------------------------------------