gitextract_9dgerd3i/ ├── .github/ │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-SAMPLECODE ├── LICENSE-SUMMARY ├── README.md ├── bootstrap.sh ├── docs/ │ ├── 00-initial-setup/ │ │ └── README.md │ ├── 01-add-authentication/ │ │ └── README.md │ ├── 02-add-secrets-manager/ │ │ └── README.md │ ├── 03-input-validation/ │ │ └── README.md │ ├── 04-ssl-in-transit/ │ │ └── README.md │ ├── 05-usage-plan/ │ │ └── README.md │ ├── 06-waf/ │ │ └── README.md │ ├── 07-dependency-vulnerability/ │ │ └── README.md │ ├── 08-xray/ │ │ └── README.md │ └── 10-resource-cleanup/ │ └── README.md └── src/ ├── apiclient/ │ ├── css/ │ │ ├── bootstrap.css │ │ ├── main.css │ │ ├── site.css │ │ └── vendor/ │ │ └── bootstrap.css │ ├── index.html │ └── js/ │ └── main.js ├── app/ │ ├── assets/ │ │ └── rds-ca-2019-root.pem │ ├── customUnicornAnalytics.js │ ├── customizeUnicorn.js │ ├── dbUtils.js │ ├── httpUtil.js │ ├── managePartners.js │ ├── package.json │ ├── permissions.js │ └── unicornParts.js ├── authorizer/ │ ├── index.js │ └── package.json ├── init/ │ ├── db/ │ │ └── queries.sql │ └── init-template.yml ├── retired/ │ └── bootstrap.sh ├── template.yaml └── test-events/ └── Customize_Unicorns.postman_collection.json