├── adminlte
├── html
│ ├── .gitignore
│ ├── dist
│ │ ├── img
│ │ │ ├── aws.png
│ │ │ ├── icons.png
│ │ │ ├── boxed-bg.jpg
│ │ │ ├── boxed-bg.png
│ │ │ ├── AdminLTELogo.png
│ │ │ └── default-150x150.png
│ │ └── js
│ │ │ └── .eslintrc.json
│ └── plugins
│ │ ├── fontawesome-free
│ │ ├── webfonts
│ │ │ ├── fa-solid-900.eot
│ │ │ ├── fa-solid-900.ttf
│ │ │ ├── fa-brands-400.eot
│ │ │ ├── fa-brands-400.ttf
│ │ │ ├── fa-brands-400.woff
│ │ │ ├── fa-brands-400.woff2
│ │ │ ├── fa-regular-400.eot
│ │ │ ├── fa-regular-400.ttf
│ │ │ ├── fa-regular-400.woff
│ │ │ ├── fa-solid-900.woff
│ │ │ ├── fa-solid-900.woff2
│ │ │ └── fa-regular-400.woff2
│ │ └── css
│ │ │ ├── solid.min.css
│ │ │ ├── brands.min.css
│ │ │ ├── regular.min.css
│ │ │ ├── brands.css
│ │ │ ├── solid.css
│ │ │ └── regular.css
│ │ └── select2
│ │ └── js
│ │ └── i18n
│ │ ├── zh-TW.js
│ │ ├── zh-CN.js
│ │ ├── ja.js
│ │ ├── az.js
│ │ ├── ko.js
│ │ ├── vi.js
│ │ ├── tk.js
│ │ ├── tr.js
│ │ ├── id.js
│ │ ├── th.js
│ │ ├── ar.js
│ │ ├── km.js
│ │ ├── nb.js
│ │ ├── sv.js
│ │ ├── is.js
│ │ ├── fi.js
│ │ ├── et.js
│ │ ├── ms.js
│ │ ├── hu.js
│ │ ├── ka.js
│ │ ├── bg.js
│ │ ├── da.js
│ │ ├── hy.js
│ │ ├── fa.js
│ │ ├── en.js
│ │ ├── he.js
│ │ ├── hi.js
│ │ ├── hr.js
│ │ ├── af.js
│ │ ├── de.js
│ │ ├── eu.js
│ │ ├── pt-BR.js
│ │ ├── mk.js
│ │ ├── pt.js
│ │ ├── lv.js
│ │ ├── bn.js
│ │ ├── sq.js
│ │ ├── ca.js
│ │ ├── it.js
│ │ ├── ps.js
│ │ ├── nl.js
│ │ ├── fr.js
│ │ ├── ne.js
│ │ ├── sl.js
│ │ ├── es.js
│ │ ├── gl.js
│ │ ├── ro.js
│ │ ├── lt.js
│ │ ├── pl.js
│ │ ├── el.js
│ │ ├── bs.js
│ │ ├── sr.js
│ │ ├── uk.js
│ │ ├── sr-Cyrl.js
│ │ ├── ru.js
│ │ ├── dsb.js
│ │ ├── hsb.js
│ │ ├── cs.js
│ │ ├── sk.js
│ │ └── build.txt
└── LICENCE.md
├── __fork
└── .gitignore
├── templates
├── footer.postjs.template.html
├── header.precss.template.html
├── sidebar.postcustom.template.html
├── breadcrumb.template.html
├── footer.prejs.template.html
├── sidebar.precustom.template.html
└── header.postcss.template.html
├── .vscode
└── settings.json
├── .gitmodules
├── services
├── ec2
│ ├── ec2.pageBuilder.php
│ └── drivers
│ │ ├── ec2_compopt.class.php
│ │ ├── ec2_costExplorer.php
│ │ ├── ec2_elbClassic.class.php
│ │ ├── ec2_elb.class.php
│ │ ├── ec2_asg.class.php
│ │ └── ec2_ebs.class.php
├── rds
│ ├── rds.pageBuilder.php
│ ├── drivers
│ │ ├── rds_mysql_aurora.class.php
│ │ ├── rds_postgres_aurora.class.php
│ │ ├── rds_mysql.class.php
│ │ └── rds_postgres.class.php
│ └── rds.class.php
├── lambda
│ ├── lambda.pageBuilder.php
│ └── lambda.class.php
├── general.reporter.json
├── __load.php
├── guardduty
│ ├── guardduty.reporter.json
│ ├── guardduty.class.php
│ └── drivers
│ │ └── guardduty_detail.class.php
├── iam
│ ├── drivers
│ │ ├── iam_group.class.php
│ │ ├── iam_setting.class.php
│ │ ├── iam_role.class.php
│ │ ├── iam_user.class.php
│ │ └── iam_common.class.php
│ └── iam.class.php
├── efs
│ ├── efs.reporter.json
│ ├── drivers
│ │ └── efs_efs.class.php
│ └── efs.class.php
├── cloudwatch.class.php
├── s3
│ ├── drivers
│ │ └── s3_control.class.php
│ └── s3.class.php
├── evaluator.class.php
├── opensearch
│ └── opensearch.class.php
├── eks
│ ├── eks.class.php
│ └── eks.reporter.json
└── service.class.php
├── .gitignore
├── composer.json
├── tests
├── rdsTest.php
└── phpunit.xml
├── README.md
├── CODE_OF_CONDUCT.md
├── route.php
├── constants.inc.php
├── .github
├── ISSUE_TEMPLATE
│ ├── feature_request.md
│ └── bug_report.md
└── PULL_REQUEST_TEMPLATE.md
├── DEVELOPER.md
├── install.sh
├── NOTICE
├── tools
├── policy.class.php
├── arguParser.class.php
├── region-selector.class.php
├── aws-sdk-custom-credential-provider.php
├── uploader.class.php
├── __load.php
├── config.php
└── feedback.class.php
├── DISCLAIMER.md
├── CONTRIBUTING.md
└── screen.php
/adminlte/html/.gitignore:
--------------------------------------------------------------------------------
1 | *.html
2 |
--------------------------------------------------------------------------------
/__fork/.gitignore:
--------------------------------------------------------------------------------
1 | *.json
2 | *.txt
3 | sess-uuid
4 |
--------------------------------------------------------------------------------
/templates/footer.postjs.template.html:
--------------------------------------------------------------------------------
1 |