Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .
- ├── README.md
- ├── ap-southeast-1
- │ ├── acm
- │ │ └── certificate
- │ │ └── wildcard_redacted_com
- │ │ ├── 00-terraform.tf
- │ │ ├── 01-providers.tf
- │ │ ├── 02-main.tf
- │ │ └── 03-outputs.tf
- │ ├── code_pipeline
- │ │ ├── ubuntu-20-base
- │ │ │ ├── backend.tf
- │ │ │ └── main.tf
- │ │ └── ubuntu-20-bastion
- │ │ ├── backend.tf
- │ │ └── main.tf
- │ ├── general
- │ │ └── parameter-store
- │ │ └── redacted
- │ │ ├── 00-terraform.tf
- │ │ ├── 01-providers.tf
- │ │ ├── 02-main.tf
- │ │ └── 03-outputs.tf
- │ ├── lambda-layers
- │ │ └── shared
- │ │ └── x-ray
- │ │ ├── 00-backend.tf
- │ │ ├── 01-data.tf
- │ │ ├── 02-locals.tf
- │ │ ├── 03-main.tf
- │ │ ├── 04-outputs.tf
- │ │ └── src
- │ │ └── lambda-layer-main.zip
- │ ├── s3
- │ │ └── golden-ami-build-manifest
- │ │ ├── backend.tf
- │ │ ├── main.tf
- │ │ └── versions.tf
- │ ├── services
- │ │ ├── redacted
- │ │ │ ├── application
- │ │ │ │ ├── main.py
- │ │ │ │ └── requirements.txt
- │ │ │ ├── backend.tf
- │ │ │ ├── data.tf
- │ │ │ ├── locals.tf
- │ │ │ ├── main.tf
- │ │ │ └── scripts
- │ │ │ └── create_pkg.sh
- │ │ └── redacted_1
- │ │ ├── backend.tf
- │ │ ├── local.tf
- │ │ ├── main.tf
- │ │ └── output.tf
- │ └── vpc
- │ └── production
- │ ├── 00-terraform.tf
- │ ├── 01-providers.tf
- │ ├── 02-data.tf
- │ ├── 03-main.tf
- │ └── 04-outputs.tf
- ├── global
- │ ├── iam
- │ │ └── role
- │ │ ├── ReadOnly
- │ │ │ ├── 00-terraform.tf
- │ │ │ ├── 02-main.tf
- │ │ │ └── 03-outputs.tf
- │ │ └── SuperAdmin
- │ │ ├── 00-terraform.tf
- │ │ ├── 01-providers.tf
- │ │ ├── 02-main.tf
- │ │ └── 03-outputs.tf
- │ └── route53
- │ └── zone
- │ ├── redacted_cloud_private
- │ │ ├── 00-terraform.tf
- │ │ ├── 01-providers.tf
- │ │ ├── 02-locals.tf
- │ │ ├── 03-data.tf
- │ │ ├── 04-main.tf
- │ │ └── 05-outputs.tf
- │ ├── redacted_cloud_public
- │ │ ├── 00-terraform.tf
- │ │ ├── 01-providers.tf
- │ │ ├── 02-locals.tf
- │ │ ├── 03-main.tf
- │ │ └── 04-outputs.tf
- │ └── redacted_com
- │ ├── 00-terraform.tf
- │ ├── 01-providers.tf
- │ ├── 02-locals.tf
- │ ├── 03-main.tf
- │ └── 04-outputs.tf
- └── us-east-1
- ├── acm
- │ └── certificate
- │ └── wildcard_redacted_com
- │ ├── 00-terraform.tf
- │ ├── 01-providers.tf
- │ ├── 02-main.tf
- │ └── 03-outputs.tf
- └── cloudwatch
- └── logs
- └── policy
- └── route53_query_logging
- ├── 00-terraform.tf
- ├── 01-providers.tf
- ├── 02-data.tf
- ├── 03-main.tf
- └── 04-outputs.tf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement