├── .gitignore ├── .tool-versions ├── LICENSE ├── README.md ├── ansible ├── .gitignore ├── README.md ├── ansible.cfg ├── filter_plugins │ └── filter_utilities.py ├── inventory │ ├── aws_ec2.yml │ ├── group_vars │ │ ├── all │ │ │ ├── users.yml │ │ │ └── vars.yml │ │ ├── tag_app_foo │ │ │ └── all.yml │ │ ├── tag_comp_app │ │ │ └── all.yml │ │ ├── tag_env_dev │ │ │ ├── all.yml │ │ │ └── users.yml │ │ └── tag_env_prod │ │ │ └── all.yml │ ├── hosts.yml │ └── static-hosts.yml ├── library │ └── iptables_raw.py ├── lookup_plugins │ └── vault.py ├── playbooks │ ├── foo │ │ ├── bastion.yml │ │ ├── bootstrap-db-mysql.yml │ │ ├── bootstrap-db-pg.yml │ │ ├── bootstrap-db-ssm.yml │ │ ├── config-app-https.yml │ │ ├── config-app-ssm-smtp.yml │ │ ├── config-app-ssm.yml │ │ ├── config-app.yml │ │ ├── config-worker.yml │ │ ├── devops.yml │ │ └── packer-app.yml │ └── manage-users.yml ├── requirements.txt ├── requirements.yml ├── roles.galaxy │ └── cogini.users │ │ ├── LICENSE │ │ ├── README.md │ │ ├── defaults │ │ └── main.yml │ │ ├── meta │ │ ├── .galaxy_install_info │ │ └── main.yml │ │ ├── tasks │ │ ├── distribution-CentOS.yml │ │ ├── distribution-Debian.yml │ │ ├── distribution-RedHat.yml │ │ ├── distribution-Ubuntu.yml │ │ ├── distribution-default.yml │ │ ├── main.yml │ │ ├── setup-Buildroot.yml │ │ ├── setup-Debian.yml │ │ └── setup-RedHat.yml │ │ ├── templates │ │ └── etc │ │ │ └── sudoers.d │ │ │ └── 00-admin │ │ ├── tests │ │ ├── inventory │ │ └── test.yml │ │ └── vars │ │ └── main.yml ├── roles │ ├── asdf │ │ ├── .gitignore │ │ ├── README.md │ │ ├── Vagrantfile │ │ ├── ansible.cfg │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── install.yml │ │ │ ├── main.yml │ │ │ └── plugins.yml │ │ ├── templates │ │ │ ├── asdf.sh.j2 │ │ │ └── asdfrc.j2 │ │ ├── tests │ │ │ ├── Dockerfile-centos7 │ │ │ ├── Dockerfile-ubuntu16.04 │ │ │ ├── inventory │ │ │ └── playbook.yml │ │ └── vars │ │ │ ├── Debian.yml │ │ │ ├── RedHat.yml │ │ │ ├── main.yml │ │ │ └── os_defaults.yml │ ├── codedeploy-agent │ │ ├── defaults │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yml │ ├── common-minimal │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yml │ ├── cronic │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── files │ │ │ └── opt │ │ │ │ └── bin │ │ │ │ └── cronic │ │ └── tasks │ │ │ └── main.yml │ ├── hostname │ │ ├── defaults │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yml │ ├── iptables-http │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yml │ ├── iptables │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── main.yml │ │ │ ├── setup-Debian.yml │ │ │ └── setup-RedHat.yml │ ├── nginx-app │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── templates │ │ │ └── etc │ │ │ │ ├── nginx │ │ │ │ ├── conf.d │ │ │ │ │ ├── default.conf.j2 │ │ │ │ │ └── localhost.conf.j2 │ │ │ │ └── nginx.conf.j2 │ │ │ │ └── systemd │ │ │ │ └── system │ │ │ │ └── nginx.service.d │ │ │ │ └── override.conf.j2 │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ ├── Debian.yml │ │ │ ├── RedHat.yml │ │ │ └── main.yml │ ├── nginx-cert │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── nginx │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── files │ │ │ ├── etc │ │ │ │ └── logrotate.d │ │ │ │ │ └── nginx │ │ │ ├── nginx_custom.pp │ │ │ └── nginx_custom.te │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── templates │ │ │ └── etc │ │ │ │ └── yum.repos.d │ │ │ │ └── nginx.repo.j2 │ │ └── vars │ │ │ ├── Debian.yml │ │ │ ├── RedHat.yml │ │ │ └── main.yml │ ├── postfix-sender │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── templates │ │ │ └── etc │ │ │ │ ├── aliases.j2 │ │ │ │ └── postfix │ │ │ │ ├── main.cf.j2 │ │ │ │ ├── sasl_passwd.j2 │ │ │ │ └── ubuntu_main.cf.j2 │ │ └── vars │ │ │ └── main.yml │ └── tools-other │ │ ├── defaults │ │ └── main.yml │ │ └── tasks │ │ └── main.yml ├── ssh.config ├── templates │ └── foo │ │ └── app │ │ ├── config.exs.j2 │ │ ├── config.toml.j2 │ │ └── nginx-app │ │ └── etc │ │ └── nginx │ │ └── conf.d │ │ └── default.conf.j2 └── vars │ └── foo │ └── dev │ ├── app-db.yml │ ├── app-https.yml │ ├── app-secrets.yml │ ├── app.yml │ ├── bastion.yml │ ├── common.yml │ ├── devops.yml │ ├── smtp-secrets.yml │ └── smtp.yml ├── doc ├── config.md └── install.md ├── packer ├── Makefile ├── README.md ├── builder │ ├── .gitignore │ ├── build.sh │ ├── build_centos.yml │ └── build_ubuntu.yml └── foo │ └── dev │ ├── build_app.sh │ └── build_worker.sh ├── secrets.sh.sample ├── set_env.sh.sample └── terraform ├── .gitignore ├── README.md ├── building.md ├── foo ├── account.hcl ├── common.hcl ├── common.yml ├── dev.yml ├── dev │ ├── acm-public-cloudfront │ │ └── terragrunt.hcl │ ├── acm-public │ │ └── terragrunt.hcl │ ├── asg-app │ │ └── terragrunt.hcl │ ├── asg-worker │ │ └── terragrunt.hcl │ ├── cloudfront-app-assets │ │ └── terragrunt.hcl │ ├── cloudfront-public-web │ │ └── terragrunt.hcl │ ├── codebuild-github-action │ │ └── terragrunt.hcl │ ├── codedeploy-app-ecs │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── codedeploy-app │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── codedeploy-deployment-app-asg │ │ └── terragrunt.hcl │ ├── codedeploy-deployment-app-ec2 │ │ └── terragrunt.hcl │ ├── codedeploy-deployment-app-ecs │ │ └── terragrunt.hcl │ ├── codedeploy-deployment-worker-asg │ │ └── terragrunt.hcl │ ├── codedeploy-deployment-worker-ec2 │ │ └── terragrunt.hcl │ ├── codedeploy-worker │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── codepipeline-app-ecs │ │ └── terragrunt.hcl │ ├── codepipeline-app │ │ └── terragrunt.hcl │ ├── codepipeline-public-web │ │ └── terragrunt.hcl │ ├── codepipeline-worker │ │ └── terragrunt.hcl │ ├── codestar-connection │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── ec2-app │ │ └── terragrunt.hcl │ ├── ec2-bastion │ │ └── terragrunt.hcl │ ├── ec2-devops │ │ └── terragrunt.hcl │ ├── ec2-prometheus │ │ └── terragrunt.hcl │ ├── ec2-worker │ │ └── terragrunt.hcl │ ├── ecr-absinthe-app │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── ecr-app │ │ ├── .terraform.lock.hcl │ │ ├── terraform.tfstate │ │ └── terragrunt.hcl │ ├── ecr-build-app-ecs │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── ecr-build-app │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── ecr-build-cache-app-ecs │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── ecr-build-worker │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── ecs-cluster │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── ecs-service-app │ │ └── terragrunt.hcl │ ├── ecs-task-app │ │ ├── container_definitions.json │ │ └── terragrunt.hcl │ ├── elasticsearch-app │ │ └── terragrunt.hcl │ ├── env.hcl │ ├── iam-codebuild-github-action-app │ │ └── terragrunt.hcl │ ├── iam-codepipeline-app │ │ └── terragrunt.hcl │ ├── iam-codepipeline-public-web │ │ └── terragrunt.hcl │ ├── iam-codepipeline-worker │ │ └── terragrunt.hcl │ ├── iam-codepipeline │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── iam-ecr-github-action-absinthe-app │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── iam-ecr-github-action-app │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── iam-ecs-task-execution │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── iam-ecs-task-role-app │ │ └── terragrunt.hcl │ ├── iam-ecs │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── iam-github-action │ │ └── terragrunt.hcl │ ├── iam-instance-profile-app │ │ └── terragrunt.hcl │ ├── iam-instance-profile-bastion │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── iam-instance-profile-devops │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── iam-instance-profile-prometheus │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── iam-instance-profile-worker │ │ └── terragrunt.hcl │ ├── iam-lambda-edge │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── iam-openid-connect-provider-github │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── iam-s3-request-logs │ │ └── terragrunt.hcl │ ├── iam-ses-app │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── kms │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── lambda-edge │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── launch-template-app │ │ └── terragrunt.hcl │ ├── lb-public │ │ └── terragrunt.hcl │ ├── nat │ │ └── terragrunt.hcl │ ├── rds-app │ │ └── terragrunt.hcl │ ├── route53-app │ │ └── terragrunt.hcl │ ├── route53-delegation-set │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── route53-public-lb-app-ecs │ │ └── terragrunt.hcl │ ├── route53-public-www │ │ └── terragrunt.hcl │ ├── route53-public │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── route53-ses │ │ └── terragrunt.hcl │ ├── route53-wildcard │ │ └── terragrunt.hcl │ ├── s3-app │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── s3-codepipeline-app │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── s3-codepipeline-public-web │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── s3-codepipeline-worker │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── s3-public-web │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── s3-request-logs │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── s3-worker │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── sg-app-private │ │ └── terragrunt.hcl │ ├── sg-app-public │ │ └── terragrunt.hcl │ ├── sg-bastion │ │ └── terragrunt.hcl │ ├── sg-build-app │ │ └── terragrunt.hcl │ ├── sg-build-worker │ │ └── terragrunt.hcl │ ├── sg-db │ │ └── terragrunt.hcl │ ├── sg-devops │ │ └── terragrunt.hcl │ ├── sg-elasticsearch-app │ │ └── terragrunt.hcl │ ├── sg-lb-public │ │ └── terragrunt.hcl │ ├── sg-prometheus │ │ └── terragrunt.hcl │ ├── sg-worker │ │ └── terragrunt.hcl │ ├── sns-codedeploy-app │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl │ ├── target-group-app-ecs-1 │ │ └── terragrunt.hcl │ ├── target-group-app-ecs-2 │ │ └── terragrunt.hcl │ ├── target-group-default │ │ └── terragrunt.hcl │ └── vpc │ │ ├── .terraform.lock.hcl │ │ └── terragrunt.hcl ├── empty.yml └── region.hcl ├── modules ├── acm │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── asg │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── autoscaling-schedule │ ├── main.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── cloudfront │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── cloudwatch-rum-app-monitor │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ └── vars.tf ├── codebuild-github-action │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ └── vars.tf ├── codecommit-repo │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── codedeploy-deployment-asg │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── codedeploy-deployment-config │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── codedeploy-deployment-ec2 │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── codedeploy-deployment-ecs │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── codedeploy │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── codepipeline │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── codestar-connection │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── cognito-identity-pool │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── ec2-private │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── ec2-public │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── ecr-build │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── ecs-capacity-provider │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── ecs-cluster │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── ecs-service │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── ecs-task │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── elasticache-memcached │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── elasticache-redis │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── elasticsearch │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-codebuild-github-action │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-codecommit-app │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-codecommit-cross-source-app │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-codecommit-cross-target-app │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-codecommit-user-mirror │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-codedeploy-ecs │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-codedeploy │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-codepipeline-app │ ├── main.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-codepipeline │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-cognito-client-role │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ └── vars.tf ├── iam-ecr-github-action │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-ecs-task-execution │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-ecs-task-role-app │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-ecs │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-elasticsearch-app │ ├── main.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-github-action │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-instance-profile-app │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-lambda-edge │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-openid-connect-provider-github │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-pganalyze │ ├── main.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-s3-request-logs │ ├── main.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── iam-ses-user │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── kms │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── lambda-edge │ ├── lambda │ │ └── index_html │ │ │ └── index.js │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── launch-template │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── lb-listener-cognito │ ├── main.tf │ ├── outputs.tf │ ├── provider.tf │ ├── variables.tf │ └── vars.tf ├── lb-listener │ ├── main.tf │ ├── outputs.tf │ ├── provider.tf │ ├── variables.tf │ └── vars.tf ├── lb │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── nat │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── rds │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── route53-alias │ ├── main.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── route53-delegation-set │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── route53-ec2 │ ├── main.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── route53-gmail │ ├── main.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── route53-ses │ ├── main.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── route53-sub │ ├── main.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── route53-zone │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── s3-app │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── s3-cloudfront-logs │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── service-discovery-private-dns-namespace │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── service-discovery-service │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── sg │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── sns │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── sqs │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── target-group-default │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── target-group-ec2-attachment │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── target-group │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── vpc-endpoints │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf ├── vpc │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf └── vpn │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── vars.tf │ └── versions.tf └── terragrunt.hcl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/.tool-versions -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/README.md -------------------------------------------------------------------------------- /ansible/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/.gitignore -------------------------------------------------------------------------------- /ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/README.md -------------------------------------------------------------------------------- /ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/ansible.cfg -------------------------------------------------------------------------------- /ansible/filter_plugins/filter_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/filter_plugins/filter_utilities.py -------------------------------------------------------------------------------- /ansible/inventory/aws_ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/inventory/aws_ec2.yml -------------------------------------------------------------------------------- /ansible/inventory/group_vars/all/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/inventory/group_vars/all/users.yml -------------------------------------------------------------------------------- /ansible/inventory/group_vars/all/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/inventory/group_vars/all/vars.yml -------------------------------------------------------------------------------- /ansible/inventory/group_vars/tag_app_foo/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/inventory/group_vars/tag_app_foo/all.yml -------------------------------------------------------------------------------- /ansible/inventory/group_vars/tag_comp_app/all.yml: -------------------------------------------------------------------------------- 1 | # role app/all.yml 2 | -------------------------------------------------------------------------------- /ansible/inventory/group_vars/tag_env_dev/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/inventory/group_vars/tag_env_dev/all.yml -------------------------------------------------------------------------------- /ansible/inventory/group_vars/tag_env_dev/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/inventory/group_vars/tag_env_dev/users.yml -------------------------------------------------------------------------------- /ansible/inventory/group_vars/tag_env_prod/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/inventory/group_vars/tag_env_prod/all.yml -------------------------------------------------------------------------------- /ansible/inventory/hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/inventory/hosts.yml -------------------------------------------------------------------------------- /ansible/inventory/static-hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/inventory/static-hosts.yml -------------------------------------------------------------------------------- /ansible/library/iptables_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/library/iptables_raw.py -------------------------------------------------------------------------------- /ansible/lookup_plugins/vault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/lookup_plugins/vault.py -------------------------------------------------------------------------------- /ansible/playbooks/foo/bastion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/playbooks/foo/bastion.yml -------------------------------------------------------------------------------- /ansible/playbooks/foo/bootstrap-db-mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/playbooks/foo/bootstrap-db-mysql.yml -------------------------------------------------------------------------------- /ansible/playbooks/foo/bootstrap-db-pg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/playbooks/foo/bootstrap-db-pg.yml -------------------------------------------------------------------------------- /ansible/playbooks/foo/bootstrap-db-ssm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/playbooks/foo/bootstrap-db-ssm.yml -------------------------------------------------------------------------------- /ansible/playbooks/foo/config-app-https.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/playbooks/foo/config-app-https.yml -------------------------------------------------------------------------------- /ansible/playbooks/foo/config-app-ssm-smtp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/playbooks/foo/config-app-ssm-smtp.yml -------------------------------------------------------------------------------- /ansible/playbooks/foo/config-app-ssm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/playbooks/foo/config-app-ssm.yml -------------------------------------------------------------------------------- /ansible/playbooks/foo/config-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/playbooks/foo/config-app.yml -------------------------------------------------------------------------------- /ansible/playbooks/foo/config-worker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/playbooks/foo/config-worker.yml -------------------------------------------------------------------------------- /ansible/playbooks/foo/devops.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/playbooks/foo/devops.yml -------------------------------------------------------------------------------- /ansible/playbooks/foo/packer-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/playbooks/foo/packer-app.yml -------------------------------------------------------------------------------- /ansible/playbooks/manage-users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/playbooks/manage-users.yml -------------------------------------------------------------------------------- /ansible/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/requirements.txt -------------------------------------------------------------------------------- /ansible/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/requirements.yml -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles.galaxy/cogini.users/LICENSE -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles.galaxy/cogini.users/README.md -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles.galaxy/cogini.users/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Wed Jun 5 05:06:29 2019', version: ''} 2 | -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles.galaxy/cogini.users/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/tasks/distribution-CentOS.yml: -------------------------------------------------------------------------------- 1 | users_admin_group: wheel 2 | -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/tasks/distribution-Debian.yml: -------------------------------------------------------------------------------- 1 | users_admin_group: sudo 2 | -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/tasks/distribution-RedHat.yml: -------------------------------------------------------------------------------- 1 | users_admin_group: wheel 2 | -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/tasks/distribution-Ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles.galaxy/cogini.users/tasks/distribution-Ubuntu.yml -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/tasks/distribution-default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles.galaxy/cogini.users/tasks/distribution-default.yml -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles.galaxy/cogini.users/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/tasks/setup-Buildroot.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/tasks/setup-Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles.galaxy/cogini.users/tasks/setup-Debian.yml -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/tasks/setup-RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles.galaxy/cogini.users/tasks/setup-RedHat.yml -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/templates/etc/sudoers.d/00-admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles.galaxy/cogini.users/templates/etc/sudoers.d/00-admin -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles.galaxy/cogini.users/tests/test.yml -------------------------------------------------------------------------------- /ansible/roles.galaxy/cogini.users/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for users -------------------------------------------------------------------------------- /ansible/roles/asdf/.gitignore: -------------------------------------------------------------------------------- 1 | *.retry 2 | /.vagrant 3 | -------------------------------------------------------------------------------- /ansible/roles/asdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/asdf/README.md -------------------------------------------------------------------------------- /ansible/roles/asdf/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/asdf/Vagrantfile -------------------------------------------------------------------------------- /ansible/roles/asdf/ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | roles_path = ../ 3 | allow_world_readable_tmpfiles = True 4 | -------------------------------------------------------------------------------- /ansible/roles/asdf/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/asdf/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/asdf/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/asdf/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/asdf/tasks/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/asdf/tasks/install.yml -------------------------------------------------------------------------------- /ansible/roles/asdf/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/asdf/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/asdf/tasks/plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/asdf/tasks/plugins.yml -------------------------------------------------------------------------------- /ansible/roles/asdf/templates/asdf.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/asdf/templates/asdf.sh.j2 -------------------------------------------------------------------------------- /ansible/roles/asdf/templates/asdfrc.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/asdf/templates/asdfrc.j2 -------------------------------------------------------------------------------- /ansible/roles/asdf/tests/Dockerfile-centos7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/asdf/tests/Dockerfile-centos7 -------------------------------------------------------------------------------- /ansible/roles/asdf/tests/Dockerfile-ubuntu16.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/asdf/tests/Dockerfile-ubuntu16.04 -------------------------------------------------------------------------------- /ansible/roles/asdf/tests/inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/asdf/tests/inventory -------------------------------------------------------------------------------- /ansible/roles/asdf/tests/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/asdf/tests/playbook.yml -------------------------------------------------------------------------------- /ansible/roles/asdf/vars/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/asdf/vars/Debian.yml -------------------------------------------------------------------------------- /ansible/roles/asdf/vars/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/asdf/vars/RedHat.yml -------------------------------------------------------------------------------- /ansible/roles/asdf/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for asdf 3 | ansible_become: True 4 | 5 | apt_cache_valid_time: 86400 6 | -------------------------------------------------------------------------------- /ansible/roles/asdf/vars/os_defaults.yml: -------------------------------------------------------------------------------- 1 | asdf_plugin_dependencies: [] 2 | -------------------------------------------------------------------------------- /ansible/roles/codedeploy-agent/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/codedeploy-agent/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/codedeploy-agent/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/codedeploy-agent/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/common-minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/common-minimal/README.md -------------------------------------------------------------------------------- /ansible/roles/common-minimal/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for roles/common-minimal 3 | -------------------------------------------------------------------------------- /ansible/roles/common-minimal/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/common-minimal/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/common-minimal/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/common-minimal/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/cronic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/cronic/README.md -------------------------------------------------------------------------------- /ansible/roles/cronic/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/cronic/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/cronic/files/opt/bin/cronic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/cronic/files/opt/bin/cronic -------------------------------------------------------------------------------- /ansible/roles/cronic/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/cronic/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/hostname/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/hostname/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/hostname/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/hostname/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/iptables-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/iptables-http/README.md -------------------------------------------------------------------------------- /ansible/roles/iptables-http/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/iptables-http/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/iptables-http/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/iptables-http/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/iptables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/iptables/README.md -------------------------------------------------------------------------------- /ansible/roles/iptables/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/iptables/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/iptables/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/iptables/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/iptables/tasks/setup-Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/iptables/tasks/setup-Debian.yml -------------------------------------------------------------------------------- /ansible/roles/iptables/tasks/setup-RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/iptables/tasks/setup-RedHat.yml -------------------------------------------------------------------------------- /ansible/roles/nginx-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-app/README.md -------------------------------------------------------------------------------- /ansible/roles/nginx-app/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-app/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/nginx-app/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-app/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/nginx-app/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-app/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/nginx-app/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-app/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/nginx-app/templates/etc/nginx/conf.d/default.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-app/templates/etc/nginx/conf.d/default.conf.j2 -------------------------------------------------------------------------------- /ansible/roles/nginx-app/templates/etc/nginx/conf.d/localhost.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-app/templates/etc/nginx/conf.d/localhost.conf.j2 -------------------------------------------------------------------------------- /ansible/roles/nginx-app/templates/etc/nginx/nginx.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-app/templates/etc/nginx/nginx.conf.j2 -------------------------------------------------------------------------------- /ansible/roles/nginx-app/templates/etc/systemd/system/nginx.service.d/override.conf.j2: -------------------------------------------------------------------------------- 1 | [Service] 2 | LimitNOFILE=65535 3 | -------------------------------------------------------------------------------- /ansible/roles/nginx-app/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/roles/nginx-app/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-app/tests/test.yml -------------------------------------------------------------------------------- /ansible/roles/nginx-app/vars/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-app/vars/Debian.yml -------------------------------------------------------------------------------- /ansible/roles/nginx-app/vars/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-app/vars/RedHat.yml -------------------------------------------------------------------------------- /ansible/roles/nginx-app/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nginx-app 3 | -------------------------------------------------------------------------------- /ansible/roles/nginx-cert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-cert/README.md -------------------------------------------------------------------------------- /ansible/roles/nginx-cert/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-cert/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/nginx-cert/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for nginx-cert -------------------------------------------------------------------------------- /ansible/roles/nginx-cert/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-cert/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/nginx-cert/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-cert/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/nginx-cert/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/roles/nginx-cert/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx-cert/tests/test.yml -------------------------------------------------------------------------------- /ansible/roles/nginx-cert/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nginx-cert -------------------------------------------------------------------------------- /ansible/roles/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx/README.md -------------------------------------------------------------------------------- /ansible/roles/nginx/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/nginx/files/etc/logrotate.d/nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx/files/etc/logrotate.d/nginx -------------------------------------------------------------------------------- /ansible/roles/nginx/files/nginx_custom.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx/files/nginx_custom.pp -------------------------------------------------------------------------------- /ansible/roles/nginx/files/nginx_custom.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx/files/nginx_custom.te -------------------------------------------------------------------------------- /ansible/roles/nginx/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/nginx/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/nginx/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/nginx/templates/etc/yum.repos.d/nginx.repo.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx/templates/etc/yum.repos.d/nginx.repo.j2 -------------------------------------------------------------------------------- /ansible/roles/nginx/vars/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx/vars/Debian.yml -------------------------------------------------------------------------------- /ansible/roles/nginx/vars/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/nginx/vars/RedHat.yml -------------------------------------------------------------------------------- /ansible/roles/nginx/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for roles/nginx 3 | -------------------------------------------------------------------------------- /ansible/roles/postfix-sender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/postfix-sender/README.md -------------------------------------------------------------------------------- /ansible/roles/postfix-sender/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/postfix-sender/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/postfix-sender/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/postfix-sender/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/postfix-sender/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/postfix-sender/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/postfix-sender/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/postfix-sender/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/postfix-sender/templates/etc/aliases.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/postfix-sender/templates/etc/aliases.j2 -------------------------------------------------------------------------------- /ansible/roles/postfix-sender/templates/etc/postfix/main.cf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/postfix-sender/templates/etc/postfix/main.cf.j2 -------------------------------------------------------------------------------- /ansible/roles/postfix-sender/templates/etc/postfix/sasl_passwd.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/postfix-sender/templates/etc/postfix/sasl_passwd.j2 -------------------------------------------------------------------------------- /ansible/roles/postfix-sender/templates/etc/postfix/ubuntu_main.cf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/postfix-sender/templates/etc/postfix/ubuntu_main.cf.j2 -------------------------------------------------------------------------------- /ansible/roles/postfix-sender/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for postfix-sender 3 | -------------------------------------------------------------------------------- /ansible/roles/tools-other/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/tools-other/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/tools-other/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/roles/tools-other/tasks/main.yml -------------------------------------------------------------------------------- /ansible/ssh.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/ssh.config -------------------------------------------------------------------------------- /ansible/templates/foo/app/config.exs.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/templates/foo/app/config.exs.j2 -------------------------------------------------------------------------------- /ansible/templates/foo/app/config.toml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/templates/foo/app/config.toml.j2 -------------------------------------------------------------------------------- /ansible/templates/foo/app/nginx-app/etc/nginx/conf.d/default.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/templates/foo/app/nginx-app/etc/nginx/conf.d/default.conf.j2 -------------------------------------------------------------------------------- /ansible/vars/foo/dev/app-db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/vars/foo/dev/app-db.yml -------------------------------------------------------------------------------- /ansible/vars/foo/dev/app-https.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/vars/foo/dev/app-https.yml -------------------------------------------------------------------------------- /ansible/vars/foo/dev/app-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/vars/foo/dev/app-secrets.yml -------------------------------------------------------------------------------- /ansible/vars/foo/dev/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/vars/foo/dev/app.yml -------------------------------------------------------------------------------- /ansible/vars/foo/dev/bastion.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/vars/foo/dev/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/vars/foo/dev/common.yml -------------------------------------------------------------------------------- /ansible/vars/foo/dev/devops.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/vars/foo/dev/devops.yml -------------------------------------------------------------------------------- /ansible/vars/foo/dev/smtp-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/vars/foo/dev/smtp-secrets.yml -------------------------------------------------------------------------------- /ansible/vars/foo/dev/smtp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/ansible/vars/foo/dev/smtp.yml -------------------------------------------------------------------------------- /doc/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/doc/config.md -------------------------------------------------------------------------------- /doc/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/doc/install.md -------------------------------------------------------------------------------- /packer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/packer/Makefile -------------------------------------------------------------------------------- /packer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/packer/README.md -------------------------------------------------------------------------------- /packer/builder/.gitignore: -------------------------------------------------------------------------------- 1 | build*.json 2 | -------------------------------------------------------------------------------- /packer/builder/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/packer/builder/build.sh -------------------------------------------------------------------------------- /packer/builder/build_centos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/packer/builder/build_centos.yml -------------------------------------------------------------------------------- /packer/builder/build_ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/packer/builder/build_ubuntu.yml -------------------------------------------------------------------------------- /packer/foo/dev/build_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/packer/foo/dev/build_app.sh -------------------------------------------------------------------------------- /packer/foo/dev/build_worker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/packer/foo/dev/build_worker.sh -------------------------------------------------------------------------------- /secrets.sh.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/secrets.sh.sample -------------------------------------------------------------------------------- /set_env.sh.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/set_env.sh.sample -------------------------------------------------------------------------------- /terraform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/.gitignore -------------------------------------------------------------------------------- /terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/README.md -------------------------------------------------------------------------------- /terraform/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/building.md -------------------------------------------------------------------------------- /terraform/foo/account.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/account.hcl -------------------------------------------------------------------------------- /terraform/foo/common.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/common.hcl -------------------------------------------------------------------------------- /terraform/foo/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/common.yml -------------------------------------------------------------------------------- /terraform/foo/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev.yml -------------------------------------------------------------------------------- /terraform/foo/dev/acm-public-cloudfront/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/acm-public-cloudfront/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/acm-public/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/acm-public/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/asg-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/asg-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/asg-worker/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/asg-worker/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/cloudfront-app-assets/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/cloudfront-app-assets/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/cloudfront-public-web/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/cloudfront-public-web/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codebuild-github-action/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codebuild-github-action/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codedeploy-app-ecs/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codedeploy-app-ecs/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codedeploy-app-ecs/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codedeploy-app-ecs/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codedeploy-app/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codedeploy-app/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codedeploy-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codedeploy-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codedeploy-deployment-app-asg/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codedeploy-deployment-app-asg/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codedeploy-deployment-app-ec2/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codedeploy-deployment-app-ec2/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codedeploy-deployment-app-ecs/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codedeploy-deployment-app-ecs/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codedeploy-deployment-worker-asg/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codedeploy-deployment-worker-asg/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codedeploy-deployment-worker-ec2/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codedeploy-deployment-worker-ec2/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codedeploy-worker/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codedeploy-worker/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codedeploy-worker/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codedeploy-worker/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codepipeline-app-ecs/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codepipeline-app-ecs/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codepipeline-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codepipeline-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codepipeline-public-web/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codepipeline-public-web/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codepipeline-worker/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codepipeline-worker/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codestar-connection/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codestar-connection/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/codestar-connection/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/codestar-connection/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ec2-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ec2-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ec2-bastion/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ec2-bastion/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ec2-devops/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ec2-devops/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ec2-prometheus/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ec2-prometheus/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ec2-worker/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ec2-worker/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecr-absinthe-app/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecr-absinthe-app/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecr-absinthe-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecr-absinthe-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecr-app/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecr-app/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecr-app/terraform.tfstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecr-app/terraform.tfstate -------------------------------------------------------------------------------- /terraform/foo/dev/ecr-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecr-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecr-build-app-ecs/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecr-build-app-ecs/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecr-build-app-ecs/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecr-build-app-ecs/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecr-build-app/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecr-build-app/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecr-build-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecr-build-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecr-build-cache-app-ecs/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecr-build-cache-app-ecs/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecr-build-cache-app-ecs/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecr-build-cache-app-ecs/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecr-build-worker/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecr-build-worker/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecr-build-worker/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecr-build-worker/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecs-cluster/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecs-cluster/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecs-cluster/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecs-cluster/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecs-service-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecs-service-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/ecs-task-app/container_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecs-task-app/container_definitions.json -------------------------------------------------------------------------------- /terraform/foo/dev/ecs-task-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/ecs-task-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/elasticsearch-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/elasticsearch-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/env.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/env.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-codebuild-github-action-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-codebuild-github-action-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-codepipeline-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-codepipeline-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-codepipeline-public-web/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-codepipeline-public-web/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-codepipeline-worker/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-codepipeline-worker/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-codepipeline/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-codepipeline/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-codepipeline/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-codepipeline/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-ecr-github-action-absinthe-app/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-ecr-github-action-absinthe-app/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-ecr-github-action-absinthe-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-ecr-github-action-absinthe-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-ecr-github-action-app/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-ecr-github-action-app/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-ecr-github-action-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-ecr-github-action-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-ecs-task-execution/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-ecs-task-execution/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-ecs-task-execution/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-ecs-task-execution/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-ecs-task-role-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-ecs-task-role-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-ecs/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-ecs/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-ecs/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-ecs/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-github-action/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-github-action/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-instance-profile-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-instance-profile-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-instance-profile-bastion/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-instance-profile-bastion/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-instance-profile-bastion/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-instance-profile-bastion/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-instance-profile-devops/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-instance-profile-devops/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-instance-profile-devops/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-instance-profile-devops/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-instance-profile-prometheus/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-instance-profile-prometheus/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-instance-profile-prometheus/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-instance-profile-prometheus/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-instance-profile-worker/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-instance-profile-worker/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-lambda-edge/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-lambda-edge/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-lambda-edge/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-lambda-edge/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-openid-connect-provider-github/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-openid-connect-provider-github/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-openid-connect-provider-github/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-openid-connect-provider-github/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-s3-request-logs/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-s3-request-logs/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-ses-app/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-ses-app/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/iam-ses-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/iam-ses-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/kms/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/kms/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/kms/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/kms/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/lambda-edge/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/lambda-edge/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/lambda-edge/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/lambda-edge/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/launch-template-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/launch-template-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/lb-public/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/lb-public/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/nat/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/nat/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/rds-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/rds-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/route53-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/route53-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/route53-delegation-set/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/route53-delegation-set/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/route53-delegation-set/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/route53-delegation-set/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/route53-public-lb-app-ecs/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/route53-public-lb-app-ecs/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/route53-public-www/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/route53-public-www/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/route53-public/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/route53-public/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/route53-public/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/route53-public/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/route53-ses/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/route53-ses/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/route53-wildcard/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/route53-wildcard/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/s3-app/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/s3-app/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/s3-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/s3-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/s3-codepipeline-app/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/s3-codepipeline-app/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/s3-codepipeline-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/s3-codepipeline-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/s3-codepipeline-public-web/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/s3-codepipeline-public-web/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/s3-codepipeline-public-web/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/s3-codepipeline-public-web/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/s3-codepipeline-worker/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/s3-codepipeline-worker/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/s3-codepipeline-worker/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/s3-codepipeline-worker/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/s3-public-web/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/s3-public-web/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/s3-public-web/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/s3-public-web/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/s3-request-logs/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/s3-request-logs/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/s3-request-logs/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/s3-request-logs/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/s3-worker/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/s3-worker/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/s3-worker/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/s3-worker/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/sg-app-private/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/sg-app-private/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/sg-app-public/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/sg-app-public/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/sg-bastion/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/sg-bastion/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/sg-build-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/sg-build-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/sg-build-worker/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/sg-build-worker/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/sg-db/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/sg-db/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/sg-devops/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/sg-devops/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/sg-elasticsearch-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/sg-elasticsearch-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/sg-lb-public/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/sg-lb-public/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/sg-prometheus/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/sg-prometheus/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/sg-worker/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/sg-worker/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/sns-codedeploy-app/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/sns-codedeploy-app/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/sns-codedeploy-app/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/sns-codedeploy-app/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/target-group-app-ecs-1/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/target-group-app-ecs-1/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/target-group-app-ecs-2/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/target-group-app-ecs-2/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/target-group-default/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/target-group-default/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/vpc/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/vpc/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/foo/dev/vpc/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/dev/vpc/terragrunt.hcl -------------------------------------------------------------------------------- /terraform/foo/empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/empty.yml -------------------------------------------------------------------------------- /terraform/foo/region.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/foo/region.hcl -------------------------------------------------------------------------------- /terraform/modules/acm/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/acm/main.tf -------------------------------------------------------------------------------- /terraform/modules/acm/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/acm/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/acm/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/acm/variables.tf -------------------------------------------------------------------------------- /terraform/modules/acm/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/acm/vars.tf -------------------------------------------------------------------------------- /terraform/modules/acm/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/asg/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/asg/main.tf -------------------------------------------------------------------------------- /terraform/modules/asg/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/asg/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/asg/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/asg/variables.tf -------------------------------------------------------------------------------- /terraform/modules/asg/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/asg/vars.tf -------------------------------------------------------------------------------- /terraform/modules/asg/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/autoscaling-schedule/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/autoscaling-schedule/main.tf -------------------------------------------------------------------------------- /terraform/modules/autoscaling-schedule/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/autoscaling-schedule/variables.tf -------------------------------------------------------------------------------- /terraform/modules/autoscaling-schedule/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/autoscaling-schedule/vars.tf -------------------------------------------------------------------------------- /terraform/modules/autoscaling-schedule/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/cloudfront/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/cloudfront/main.tf -------------------------------------------------------------------------------- /terraform/modules/cloudfront/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/cloudfront/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/cloudfront/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/cloudfront/variables.tf -------------------------------------------------------------------------------- /terraform/modules/cloudfront/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/cloudfront/vars.tf -------------------------------------------------------------------------------- /terraform/modules/cloudfront/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/cloudwatch-rum-app-monitor/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/cloudwatch-rum-app-monitor/main.tf -------------------------------------------------------------------------------- /terraform/modules/cloudwatch-rum-app-monitor/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/cloudwatch-rum-app-monitor/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/cloudwatch-rum-app-monitor/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/cloudwatch-rum-app-monitor/variables.tf -------------------------------------------------------------------------------- /terraform/modules/cloudwatch-rum-app-monitor/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/cloudwatch-rum-app-monitor/vars.tf -------------------------------------------------------------------------------- /terraform/modules/codebuild-github-action/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codebuild-github-action/main.tf -------------------------------------------------------------------------------- /terraform/modules/codebuild-github-action/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codebuild-github-action/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/codebuild-github-action/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codebuild-github-action/variables.tf -------------------------------------------------------------------------------- /terraform/modules/codebuild-github-action/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codebuild-github-action/vars.tf -------------------------------------------------------------------------------- /terraform/modules/codecommit-repo/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codecommit-repo/main.tf -------------------------------------------------------------------------------- /terraform/modules/codecommit-repo/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codecommit-repo/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/codecommit-repo/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codecommit-repo/variables.tf -------------------------------------------------------------------------------- /terraform/modules/codecommit-repo/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codecommit-repo/vars.tf -------------------------------------------------------------------------------- /terraform/modules/codecommit-repo/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-asg/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-asg/main.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-asg/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-asg/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-asg/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-asg/variables.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-asg/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-asg/vars.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-asg/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-config/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-config/main.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-config/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-config/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-config/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-config/variables.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-config/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-config/vars.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-config/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-ec2/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-ec2/main.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-ec2/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-ec2/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-ec2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-ec2/variables.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-ec2/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-ec2/vars.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-ec2/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-ecs/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-ecs/main.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-ecs/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-ecs/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-ecs/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-ecs/variables.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-ecs/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy-deployment-ecs/vars.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy-deployment-ecs/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/codedeploy/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy/main.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy/variables.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codedeploy/vars.tf -------------------------------------------------------------------------------- /terraform/modules/codedeploy/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/codepipeline/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codepipeline/main.tf -------------------------------------------------------------------------------- /terraform/modules/codepipeline/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codepipeline/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/codepipeline/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codepipeline/variables.tf -------------------------------------------------------------------------------- /terraform/modules/codepipeline/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codepipeline/vars.tf -------------------------------------------------------------------------------- /terraform/modules/codepipeline/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/codestar-connection/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codestar-connection/main.tf -------------------------------------------------------------------------------- /terraform/modules/codestar-connection/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codestar-connection/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/codestar-connection/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codestar-connection/variables.tf -------------------------------------------------------------------------------- /terraform/modules/codestar-connection/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/codestar-connection/vars.tf -------------------------------------------------------------------------------- /terraform/modules/codestar-connection/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/cognito-identity-pool/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/cognito-identity-pool/main.tf -------------------------------------------------------------------------------- /terraform/modules/cognito-identity-pool/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/cognito-identity-pool/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/cognito-identity-pool/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/cognito-identity-pool/variables.tf -------------------------------------------------------------------------------- /terraform/modules/cognito-identity-pool/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/cognito-identity-pool/vars.tf -------------------------------------------------------------------------------- /terraform/modules/cognito-identity-pool/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/ec2-private/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ec2-private/main.tf -------------------------------------------------------------------------------- /terraform/modules/ec2-private/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ec2-private/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/ec2-private/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ec2-private/variables.tf -------------------------------------------------------------------------------- /terraform/modules/ec2-private/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ec2-private/vars.tf -------------------------------------------------------------------------------- /terraform/modules/ec2-private/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/ec2-public/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ec2-public/main.tf -------------------------------------------------------------------------------- /terraform/modules/ec2-public/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ec2-public/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/ec2-public/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ec2-public/variables.tf -------------------------------------------------------------------------------- /terraform/modules/ec2-public/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ec2-public/vars.tf -------------------------------------------------------------------------------- /terraform/modules/ec2-public/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/ecr-build/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecr-build/main.tf -------------------------------------------------------------------------------- /terraform/modules/ecr-build/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecr-build/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/ecr-build/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecr-build/variables.tf -------------------------------------------------------------------------------- /terraform/modules/ecr-build/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecr-build/vars.tf -------------------------------------------------------------------------------- /terraform/modules/ecr-build/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/ecs-capacity-provider/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-capacity-provider/main.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-capacity-provider/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-capacity-provider/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-capacity-provider/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-capacity-provider/variables.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-capacity-provider/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-capacity-provider/vars.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-capacity-provider/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/ecs-cluster/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-cluster/main.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-cluster/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-cluster/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-cluster/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-cluster/variables.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-cluster/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-cluster/vars.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-cluster/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/ecs-service/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-service/main.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-service/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-service/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-service/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-service/variables.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-service/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-service/vars.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-service/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/ecs-task/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-task/main.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-task/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-task/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-task/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-task/variables.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-task/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/ecs-task/vars.tf -------------------------------------------------------------------------------- /terraform/modules/ecs-task/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/elasticache-memcached/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/elasticache-memcached/main.tf -------------------------------------------------------------------------------- /terraform/modules/elasticache-memcached/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/elasticache-memcached/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/elasticache-memcached/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/elasticache-memcached/variables.tf -------------------------------------------------------------------------------- /terraform/modules/elasticache-memcached/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/elasticache-memcached/vars.tf -------------------------------------------------------------------------------- /terraform/modules/elasticache-memcached/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/elasticache-redis/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/elasticache-redis/main.tf -------------------------------------------------------------------------------- /terraform/modules/elasticache-redis/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/elasticache-redis/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/elasticache-redis/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/elasticache-redis/variables.tf -------------------------------------------------------------------------------- /terraform/modules/elasticache-redis/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/elasticache-redis/vars.tf -------------------------------------------------------------------------------- /terraform/modules/elasticache-redis/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/elasticsearch/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/elasticsearch/main.tf -------------------------------------------------------------------------------- /terraform/modules/elasticsearch/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/elasticsearch/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/elasticsearch/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/elasticsearch/variables.tf -------------------------------------------------------------------------------- /terraform/modules/elasticsearch/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/elasticsearch/vars.tf -------------------------------------------------------------------------------- /terraform/modules/elasticsearch/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-codebuild-github-action/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codebuild-github-action/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codebuild-github-action/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codebuild-github-action/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codebuild-github-action/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codebuild-github-action/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codebuild-github-action/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codebuild-github-action/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codebuild-github-action/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-app/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-app/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-app/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-app/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-app/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-app/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-app/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-app/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-app/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-cross-source-app/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-cross-source-app/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-cross-source-app/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-cross-source-app/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-cross-source-app/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-cross-source-app/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-cross-source-app/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-cross-source-app/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-cross-source-app/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-cross-target-app/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-cross-target-app/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-cross-target-app/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-cross-target-app/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-cross-target-app/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-cross-target-app/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-cross-target-app/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-cross-target-app/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-cross-target-app/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-user-mirror/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-user-mirror/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-user-mirror/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-user-mirror/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-user-mirror/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-user-mirror/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-user-mirror/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codecommit-user-mirror/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codecommit-user-mirror/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-codedeploy-ecs/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codedeploy-ecs/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codedeploy-ecs/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codedeploy-ecs/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codedeploy-ecs/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codedeploy-ecs/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codedeploy-ecs/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codedeploy-ecs/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codedeploy-ecs/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-codedeploy/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codedeploy/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codedeploy/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codedeploy/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codedeploy/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codedeploy/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codedeploy/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codedeploy/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codedeploy/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-codepipeline-app/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codepipeline-app/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codepipeline-app/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codepipeline-app/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codepipeline-app/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codepipeline-app/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codepipeline-app/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-codepipeline/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codepipeline/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codepipeline/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codepipeline/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codepipeline/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codepipeline/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codepipeline/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-codepipeline/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-codepipeline/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-cognito-client-role/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-cognito-client-role/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-cognito-client-role/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-cognito-client-role/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-cognito-client-role/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-cognito-client-role/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-cognito-client-role/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-cognito-client-role/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecr-github-action/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecr-github-action/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecr-github-action/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecr-github-action/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecr-github-action/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecr-github-action/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecr-github-action/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecr-github-action/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecr-github-action/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-ecs-task-execution/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecs-task-execution/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecs-task-execution/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecs-task-execution/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecs-task-execution/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecs-task-execution/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecs-task-execution/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecs-task-execution/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecs-task-execution/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-ecs-task-role-app/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecs-task-role-app/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecs-task-role-app/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecs-task-role-app/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecs-task-role-app/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecs-task-role-app/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecs-task-role-app/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecs-task-role-app/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecs-task-role-app/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-ecs/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecs/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecs/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecs/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecs/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecs/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecs/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ecs/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ecs/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-elasticsearch-app/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-elasticsearch-app/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-elasticsearch-app/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-elasticsearch-app/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-elasticsearch-app/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-elasticsearch-app/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-elasticsearch-app/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-github-action/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-github-action/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-github-action/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-github-action/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-github-action/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-github-action/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-github-action/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-github-action/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-github-action/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-instance-profile-app/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-instance-profile-app/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-instance-profile-app/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-instance-profile-app/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-instance-profile-app/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-instance-profile-app/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-instance-profile-app/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-instance-profile-app/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-instance-profile-app/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-lambda-edge/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-lambda-edge/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-lambda-edge/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-lambda-edge/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-lambda-edge/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-lambda-edge/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-lambda-edge/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-lambda-edge/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-lambda-edge/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-openid-connect-provider-github/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-openid-connect-provider-github/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-openid-connect-provider-github/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-openid-connect-provider-github/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-openid-connect-provider-github/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-openid-connect-provider-github/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-openid-connect-provider-github/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-openid-connect-provider-github/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-openid-connect-provider-github/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-pganalyze/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-pganalyze/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-pganalyze/variables.tf: -------------------------------------------------------------------------------- 1 | variable "comp" { 2 | description = "Component, e.g. app, worker" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-pganalyze/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-pganalyze/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-pganalyze/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-s3-request-logs/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-s3-request-logs/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-s3-request-logs/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-s3-request-logs/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-s3-request-logs/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-s3-request-logs/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-s3-request-logs/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/iam-ses-user/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ses-user/main.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ses-user/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ses-user/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ses-user/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ses-user/variables.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ses-user/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/iam-ses-user/vars.tf -------------------------------------------------------------------------------- /terraform/modules/iam-ses-user/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/kms/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/kms/main.tf -------------------------------------------------------------------------------- /terraform/modules/kms/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/kms/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/kms/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/kms/variables.tf -------------------------------------------------------------------------------- /terraform/modules/kms/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/kms/vars.tf -------------------------------------------------------------------------------- /terraform/modules/kms/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/lambda-edge/lambda/index_html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lambda-edge/lambda/index_html/index.js -------------------------------------------------------------------------------- /terraform/modules/lambda-edge/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lambda-edge/main.tf -------------------------------------------------------------------------------- /terraform/modules/lambda-edge/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lambda-edge/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/lambda-edge/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lambda-edge/variables.tf -------------------------------------------------------------------------------- /terraform/modules/lambda-edge/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lambda-edge/vars.tf -------------------------------------------------------------------------------- /terraform/modules/lambda-edge/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/launch-template/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/launch-template/main.tf -------------------------------------------------------------------------------- /terraform/modules/launch-template/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/launch-template/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/launch-template/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/launch-template/variables.tf -------------------------------------------------------------------------------- /terraform/modules/launch-template/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/launch-template/vars.tf -------------------------------------------------------------------------------- /terraform/modules/launch-template/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/lb-listener-cognito/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lb-listener-cognito/main.tf -------------------------------------------------------------------------------- /terraform/modules/lb-listener-cognito/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lb-listener-cognito/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/lb-listener-cognito/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lb-listener-cognito/provider.tf -------------------------------------------------------------------------------- /terraform/modules/lb-listener-cognito/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lb-listener-cognito/variables.tf -------------------------------------------------------------------------------- /terraform/modules/lb-listener-cognito/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lb-listener-cognito/vars.tf -------------------------------------------------------------------------------- /terraform/modules/lb-listener/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lb-listener/main.tf -------------------------------------------------------------------------------- /terraform/modules/lb-listener/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lb-listener/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/lb-listener/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lb-listener/provider.tf -------------------------------------------------------------------------------- /terraform/modules/lb-listener/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lb-listener/variables.tf -------------------------------------------------------------------------------- /terraform/modules/lb-listener/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lb-listener/vars.tf -------------------------------------------------------------------------------- /terraform/modules/lb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lb/main.tf -------------------------------------------------------------------------------- /terraform/modules/lb/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lb/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/lb/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lb/variables.tf -------------------------------------------------------------------------------- /terraform/modules/lb/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/lb/vars.tf -------------------------------------------------------------------------------- /terraform/modules/lb/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/nat/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/nat/main.tf -------------------------------------------------------------------------------- /terraform/modules/nat/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/nat/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/nat/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/nat/variables.tf -------------------------------------------------------------------------------- /terraform/modules/nat/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/nat/vars.tf -------------------------------------------------------------------------------- /terraform/modules/nat/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/rds/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/rds/main.tf -------------------------------------------------------------------------------- /terraform/modules/rds/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/rds/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/rds/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/rds/variables.tf -------------------------------------------------------------------------------- /terraform/modules/rds/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/rds/vars.tf -------------------------------------------------------------------------------- /terraform/modules/rds/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/route53-alias/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-alias/main.tf -------------------------------------------------------------------------------- /terraform/modules/route53-alias/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-alias/variables.tf -------------------------------------------------------------------------------- /terraform/modules/route53-alias/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-alias/vars.tf -------------------------------------------------------------------------------- /terraform/modules/route53-alias/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/route53-delegation-set/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-delegation-set/main.tf -------------------------------------------------------------------------------- /terraform/modules/route53-delegation-set/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-delegation-set/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/route53-delegation-set/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-delegation-set/variables.tf -------------------------------------------------------------------------------- /terraform/modules/route53-delegation-set/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-delegation-set/vars.tf -------------------------------------------------------------------------------- /terraform/modules/route53-delegation-set/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/route53-ec2/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-ec2/main.tf -------------------------------------------------------------------------------- /terraform/modules/route53-ec2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-ec2/variables.tf -------------------------------------------------------------------------------- /terraform/modules/route53-ec2/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-ec2/vars.tf -------------------------------------------------------------------------------- /terraform/modules/route53-ec2/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/route53-gmail/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-gmail/main.tf -------------------------------------------------------------------------------- /terraform/modules/route53-gmail/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-gmail/variables.tf -------------------------------------------------------------------------------- /terraform/modules/route53-gmail/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-gmail/vars.tf -------------------------------------------------------------------------------- /terraform/modules/route53-gmail/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/route53-ses/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-ses/main.tf -------------------------------------------------------------------------------- /terraform/modules/route53-ses/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-ses/variables.tf -------------------------------------------------------------------------------- /terraform/modules/route53-ses/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-ses/vars.tf -------------------------------------------------------------------------------- /terraform/modules/route53-ses/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/route53-sub/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-sub/main.tf -------------------------------------------------------------------------------- /terraform/modules/route53-sub/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-sub/variables.tf -------------------------------------------------------------------------------- /terraform/modules/route53-sub/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-sub/vars.tf -------------------------------------------------------------------------------- /terraform/modules/route53-sub/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/route53-zone/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-zone/main.tf -------------------------------------------------------------------------------- /terraform/modules/route53-zone/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-zone/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/route53-zone/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-zone/variables.tf -------------------------------------------------------------------------------- /terraform/modules/route53-zone/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/route53-zone/vars.tf -------------------------------------------------------------------------------- /terraform/modules/route53-zone/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/s3-app/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/s3-app/main.tf -------------------------------------------------------------------------------- /terraform/modules/s3-app/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/s3-app/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/s3-app/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/s3-app/variables.tf -------------------------------------------------------------------------------- /terraform/modules/s3-app/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/s3-app/vars.tf -------------------------------------------------------------------------------- /terraform/modules/s3-app/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/s3-cloudfront-logs/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/s3-cloudfront-logs/main.tf -------------------------------------------------------------------------------- /terraform/modules/s3-cloudfront-logs/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/s3-cloudfront-logs/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/s3-cloudfront-logs/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/s3-cloudfront-logs/variables.tf -------------------------------------------------------------------------------- /terraform/modules/s3-cloudfront-logs/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/s3-cloudfront-logs/vars.tf -------------------------------------------------------------------------------- /terraform/modules/s3-cloudfront-logs/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/service-discovery-private-dns-namespace/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/service-discovery-private-dns-namespace/main.tf -------------------------------------------------------------------------------- /terraform/modules/service-discovery-private-dns-namespace/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/service-discovery-private-dns-namespace/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/service-discovery-private-dns-namespace/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/service-discovery-private-dns-namespace/variables.tf -------------------------------------------------------------------------------- /terraform/modules/service-discovery-private-dns-namespace/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/service-discovery-private-dns-namespace/vars.tf -------------------------------------------------------------------------------- /terraform/modules/service-discovery-private-dns-namespace/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/service-discovery-service/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/service-discovery-service/main.tf -------------------------------------------------------------------------------- /terraform/modules/service-discovery-service/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/service-discovery-service/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/service-discovery-service/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/service-discovery-service/variables.tf -------------------------------------------------------------------------------- /terraform/modules/service-discovery-service/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/service-discovery-service/vars.tf -------------------------------------------------------------------------------- /terraform/modules/service-discovery-service/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/sg/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/sg/main.tf -------------------------------------------------------------------------------- /terraform/modules/sg/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/sg/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/sg/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/sg/variables.tf -------------------------------------------------------------------------------- /terraform/modules/sg/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/sg/vars.tf -------------------------------------------------------------------------------- /terraform/modules/sg/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/sns/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/sns/main.tf -------------------------------------------------------------------------------- /terraform/modules/sns/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/sns/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/sns/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/sns/variables.tf -------------------------------------------------------------------------------- /terraform/modules/sns/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/sns/vars.tf -------------------------------------------------------------------------------- /terraform/modules/sns/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/sqs/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/sqs/main.tf -------------------------------------------------------------------------------- /terraform/modules/sqs/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/sqs/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/sqs/variables.tf: -------------------------------------------------------------------------------- 1 | variable "name" { 2 | description = "Name of queue" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/sqs/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/sqs/vars.tf -------------------------------------------------------------------------------- /terraform/modules/sqs/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/target-group-default/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/target-group-default/main.tf -------------------------------------------------------------------------------- /terraform/modules/target-group-default/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/target-group-default/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/target-group-default/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/target-group-default/variables.tf -------------------------------------------------------------------------------- /terraform/modules/target-group-default/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/target-group-default/vars.tf -------------------------------------------------------------------------------- /terraform/modules/target-group-default/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/target-group-ec2-attachment/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/target-group-ec2-attachment/main.tf -------------------------------------------------------------------------------- /terraform/modules/target-group-ec2-attachment/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/target-group-ec2-attachment/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/target-group-ec2-attachment/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/target-group-ec2-attachment/variables.tf -------------------------------------------------------------------------------- /terraform/modules/target-group-ec2-attachment/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/target-group-ec2-attachment/vars.tf -------------------------------------------------------------------------------- /terraform/modules/target-group-ec2-attachment/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/target-group/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/target-group/main.tf -------------------------------------------------------------------------------- /terraform/modules/target-group/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/target-group/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/target-group/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/target-group/variables.tf -------------------------------------------------------------------------------- /terraform/modules/target-group/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/target-group/vars.tf -------------------------------------------------------------------------------- /terraform/modules/target-group/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/vpc-endpoints/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/vpc-endpoints/main.tf -------------------------------------------------------------------------------- /terraform/modules/vpc-endpoints/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/vpc-endpoints/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/vpc-endpoints/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/vpc-endpoints/variables.tf -------------------------------------------------------------------------------- /terraform/modules/vpc-endpoints/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/vpc-endpoints/vars.tf -------------------------------------------------------------------------------- /terraform/modules/vpc-endpoints/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 1.0" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/vpc/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/vpc/main.tf -------------------------------------------------------------------------------- /terraform/modules/vpc/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/vpc/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/vpc/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/vpc/variables.tf -------------------------------------------------------------------------------- /terraform/modules/vpc/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/vpc/vars.tf -------------------------------------------------------------------------------- /terraform/modules/vpc/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 1.0" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/modules/vpn/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/vpn/main.tf -------------------------------------------------------------------------------- /terraform/modules/vpn/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/vpn/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/vpn/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/vpn/variables.tf -------------------------------------------------------------------------------- /terraform/modules/vpn/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/modules/vpn/vars.tf -------------------------------------------------------------------------------- /terraform/modules/vpn/versions.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_version = ">= 0.13" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogini/multi-env-deploy/HEAD/terraform/terragrunt.hcl --------------------------------------------------------------------------------