├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report_template.md │ └── feature_request_template.md ├── pull_request_template.md └── workflows │ ├── lint.yml │ └── python-test.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-3rdparty.csv ├── NOTICE ├── README.md ├── aws ├── .prettierrc ├── README.md ├── datadog_aws_integration.tf ├── datadog_integration_role.yaml ├── datadog_policy_macro.yaml ├── main.yaml └── release.sh ├── aws_account_level_logs ├── main.yaml ├── release.sh └── single-region.yaml ├── aws_attach_integration_permissions ├── README.md ├── attach_integration_permissions.py ├── main.yaml ├── release.sh └── version.txt ├── aws_cloud_cost ├── CHANGELOG.md ├── README.md ├── main.yaml ├── release.sh └── version.txt ├── aws_config_stream ├── README.md ├── main_config_stream.yaml └── release.sh ├── aws_llm ├── add_llm_observability_permissions.yaml ├── attach_security_audit_policy.py ├── attach_security_audit_policy.yaml ├── main.yaml ├── release.sh └── version.txt ├── aws_organizations ├── README.md ├── main_organizations.yaml ├── release.sh ├── taskcat │ ├── .taskcat.yml │ ├── README.md │ └── run-taskcat-tests.sh └── version.txt ├── aws_quickstart ├── CHANGELOG.md ├── README.md ├── datadog_agentless_api_call.py ├── datadog_agentless_api_call_test.py ├── datadog_agentless_delegate_role.yaml ├── datadog_agentless_delegate_role_snapshot.yaml ├── datadog_agentless_scanning.yaml ├── datadog_aws_integration.tf ├── datadog_integration_api_call_v2.yaml ├── datadog_integration_autoscaling_policy.yaml ├── datadog_integration_role.yaml ├── datadog_integration_sds_policy.yaml ├── main_extended.yaml ├── main_v2.yaml ├── release.sh ├── taskcat │ ├── .taskcat.yml │ ├── .taskcat_extended.yml │ ├── README.md │ └── run-taskcat-tests.sh └── version.txt └── aws_streams ├── README.md ├── release.sh ├── streams_main.yaml ├── streams_single_region.yaml └── taskcat ├── .taskcat.yml └── run-taskcat-tests.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/.github/ISSUE_TEMPLATE/bug_report_template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/.github/ISSUE_TEMPLATE/feature_request_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/python-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/.github/workflows/python-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-3rdparty.csv: -------------------------------------------------------------------------------- 1 | Component,Origin,License,Copyright -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/README.md -------------------------------------------------------------------------------- /aws/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws/README.md -------------------------------------------------------------------------------- /aws/datadog_aws_integration.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws/datadog_aws_integration.tf -------------------------------------------------------------------------------- /aws/datadog_integration_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws/datadog_integration_role.yaml -------------------------------------------------------------------------------- /aws/datadog_policy_macro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws/datadog_policy_macro.yaml -------------------------------------------------------------------------------- /aws/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws/main.yaml -------------------------------------------------------------------------------- /aws/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws/release.sh -------------------------------------------------------------------------------- /aws_account_level_logs/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_account_level_logs/main.yaml -------------------------------------------------------------------------------- /aws_account_level_logs/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_account_level_logs/release.sh -------------------------------------------------------------------------------- /aws_account_level_logs/single-region.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_account_level_logs/single-region.yaml -------------------------------------------------------------------------------- /aws_attach_integration_permissions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_attach_integration_permissions/README.md -------------------------------------------------------------------------------- /aws_attach_integration_permissions/attach_integration_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_attach_integration_permissions/attach_integration_permissions.py -------------------------------------------------------------------------------- /aws_attach_integration_permissions/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_attach_integration_permissions/main.yaml -------------------------------------------------------------------------------- /aws_attach_integration_permissions/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_attach_integration_permissions/release.sh -------------------------------------------------------------------------------- /aws_attach_integration_permissions/version.txt: -------------------------------------------------------------------------------- 1 | v1.1.0 2 | -------------------------------------------------------------------------------- /aws_cloud_cost/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | Initial version 4 | -------------------------------------------------------------------------------- /aws_cloud_cost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_cloud_cost/README.md -------------------------------------------------------------------------------- /aws_cloud_cost/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_cloud_cost/main.yaml -------------------------------------------------------------------------------- /aws_cloud_cost/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_cloud_cost/release.sh -------------------------------------------------------------------------------- /aws_cloud_cost/version.txt: -------------------------------------------------------------------------------- 1 | v0.0.1 -------------------------------------------------------------------------------- /aws_config_stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_config_stream/README.md -------------------------------------------------------------------------------- /aws_config_stream/main_config_stream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_config_stream/main_config_stream.yaml -------------------------------------------------------------------------------- /aws_config_stream/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_config_stream/release.sh -------------------------------------------------------------------------------- /aws_llm/add_llm_observability_permissions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_llm/add_llm_observability_permissions.yaml -------------------------------------------------------------------------------- /aws_llm/attach_security_audit_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_llm/attach_security_audit_policy.py -------------------------------------------------------------------------------- /aws_llm/attach_security_audit_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_llm/attach_security_audit_policy.yaml -------------------------------------------------------------------------------- /aws_llm/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_llm/main.yaml -------------------------------------------------------------------------------- /aws_llm/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_llm/release.sh -------------------------------------------------------------------------------- /aws_llm/version.txt: -------------------------------------------------------------------------------- 1 | v1.0.0 2 | -------------------------------------------------------------------------------- /aws_organizations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_organizations/README.md -------------------------------------------------------------------------------- /aws_organizations/main_organizations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_organizations/main_organizations.yaml -------------------------------------------------------------------------------- /aws_organizations/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_organizations/release.sh -------------------------------------------------------------------------------- /aws_organizations/taskcat/.taskcat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_organizations/taskcat/.taskcat.yml -------------------------------------------------------------------------------- /aws_organizations/taskcat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_organizations/taskcat/README.md -------------------------------------------------------------------------------- /aws_organizations/taskcat/run-taskcat-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_organizations/taskcat/run-taskcat-tests.sh -------------------------------------------------------------------------------- /aws_organizations/version.txt: -------------------------------------------------------------------------------- 1 | v4.1.0 2 | -------------------------------------------------------------------------------- /aws_quickstart/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/CHANGELOG.md -------------------------------------------------------------------------------- /aws_quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/README.md -------------------------------------------------------------------------------- /aws_quickstart/datadog_agentless_api_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/datadog_agentless_api_call.py -------------------------------------------------------------------------------- /aws_quickstart/datadog_agentless_api_call_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/datadog_agentless_api_call_test.py -------------------------------------------------------------------------------- /aws_quickstart/datadog_agentless_delegate_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/datadog_agentless_delegate_role.yaml -------------------------------------------------------------------------------- /aws_quickstart/datadog_agentless_delegate_role_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/datadog_agentless_delegate_role_snapshot.yaml -------------------------------------------------------------------------------- /aws_quickstart/datadog_agentless_scanning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/datadog_agentless_scanning.yaml -------------------------------------------------------------------------------- /aws_quickstart/datadog_aws_integration.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/datadog_aws_integration.tf -------------------------------------------------------------------------------- /aws_quickstart/datadog_integration_api_call_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/datadog_integration_api_call_v2.yaml -------------------------------------------------------------------------------- /aws_quickstart/datadog_integration_autoscaling_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/datadog_integration_autoscaling_policy.yaml -------------------------------------------------------------------------------- /aws_quickstart/datadog_integration_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/datadog_integration_role.yaml -------------------------------------------------------------------------------- /aws_quickstart/datadog_integration_sds_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/datadog_integration_sds_policy.yaml -------------------------------------------------------------------------------- /aws_quickstart/main_extended.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/main_extended.yaml -------------------------------------------------------------------------------- /aws_quickstart/main_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/main_v2.yaml -------------------------------------------------------------------------------- /aws_quickstart/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/release.sh -------------------------------------------------------------------------------- /aws_quickstart/taskcat/.taskcat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/taskcat/.taskcat.yml -------------------------------------------------------------------------------- /aws_quickstart/taskcat/.taskcat_extended.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/taskcat/.taskcat_extended.yml -------------------------------------------------------------------------------- /aws_quickstart/taskcat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/taskcat/README.md -------------------------------------------------------------------------------- /aws_quickstart/taskcat/run-taskcat-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_quickstart/taskcat/run-taskcat-tests.sh -------------------------------------------------------------------------------- /aws_quickstart/version.txt: -------------------------------------------------------------------------------- 1 | v4.2.3 2 | -------------------------------------------------------------------------------- /aws_streams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_streams/README.md -------------------------------------------------------------------------------- /aws_streams/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_streams/release.sh -------------------------------------------------------------------------------- /aws_streams/streams_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_streams/streams_main.yaml -------------------------------------------------------------------------------- /aws_streams/streams_single_region.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_streams/streams_single_region.yaml -------------------------------------------------------------------------------- /aws_streams/taskcat/.taskcat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_streams/taskcat/.taskcat.yml -------------------------------------------------------------------------------- /aws_streams/taskcat/run-taskcat-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataDog/cloudformation-template/HEAD/aws_streams/taskcat/run-taskcat-tests.sh --------------------------------------------------------------------------------