├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── cloudformation └── cid-crcd-resources.yaml ├── dashboard_template ├── cid-crcd-definition.yaml └── cid-crcd.yaml ├── documentation ├── README.md └── upgrade.md ├── images ├── Architecture-DedicatedDasboardAccount.png ├── Architecture-LogArchiveAccount.png ├── architecture-dashboard-account.png ├── architecture-log-archive-account.png ├── cloudformation-parameters.png ├── compliance-1.png ├── compliance-2.png ├── deleted-resources.png ├── deployment-steps-dashboard-account.png ├── deployment-steps-log-archive-account.png ├── ec2-inventory.png └── tag-compliance-summary.png └── release.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cloudformation/cid-crcd-resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/cloudformation/cid-crcd-resources.yaml -------------------------------------------------------------------------------- /dashboard_template/cid-crcd-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/dashboard_template/cid-crcd-definition.yaml -------------------------------------------------------------------------------- /dashboard_template/cid-crcd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/dashboard_template/cid-crcd.yaml -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/documentation/upgrade.md -------------------------------------------------------------------------------- /images/Architecture-DedicatedDasboardAccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/images/Architecture-DedicatedDasboardAccount.png -------------------------------------------------------------------------------- /images/Architecture-LogArchiveAccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/images/Architecture-LogArchiveAccount.png -------------------------------------------------------------------------------- /images/architecture-dashboard-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/images/architecture-dashboard-account.png -------------------------------------------------------------------------------- /images/architecture-log-archive-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/images/architecture-log-archive-account.png -------------------------------------------------------------------------------- /images/cloudformation-parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/images/cloudformation-parameters.png -------------------------------------------------------------------------------- /images/compliance-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/images/compliance-1.png -------------------------------------------------------------------------------- /images/compliance-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/images/compliance-2.png -------------------------------------------------------------------------------- /images/deleted-resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/images/deleted-resources.png -------------------------------------------------------------------------------- /images/deployment-steps-dashboard-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/images/deployment-steps-dashboard-account.png -------------------------------------------------------------------------------- /images/deployment-steps-log-archive-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/images/deployment-steps-log-archive-account.png -------------------------------------------------------------------------------- /images/ec2-inventory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/images/ec2-inventory.png -------------------------------------------------------------------------------- /images/tag-compliance-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/images/tag-compliance-summary.png -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/config-resource-compliance-dashboard/HEAD/release.sh --------------------------------------------------------------------------------