├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE.md ├── README.md ├── asset ├── architecture.png ├── issue-workflow.xml ├── jira-cloud-status.png ├── jira-cloud-transitions.png └── workflow.png ├── conf └── params_prod.sh ├── deploy.sh ├── src ├── code │ ├── config │ │ └── config.json │ ├── security_hub_integration.py │ ├── sync_securityhub.py │ ├── test_securityhub_integration.py │ └── utils.py └── template │ ├── cloudformation_template.yaml │ └── lpt-basic.yaml ├── test.sh └── test ├── custom_new.template ├── custom_notified_existing.template ├── imported_archived_existing.template ├── imported_archived_new.template ├── imported_archived_notified.template ├── imported_new_automated_standard_check.template └── imported_new_notautomated.template /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | **/dist 4 | *.drawio 5 | *.vsdx -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/README.md -------------------------------------------------------------------------------- /asset/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/asset/architecture.png -------------------------------------------------------------------------------- /asset/issue-workflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/asset/issue-workflow.xml -------------------------------------------------------------------------------- /asset/jira-cloud-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/asset/jira-cloud-status.png -------------------------------------------------------------------------------- /asset/jira-cloud-transitions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/asset/jira-cloud-transitions.png -------------------------------------------------------------------------------- /asset/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/asset/workflow.png -------------------------------------------------------------------------------- /conf/params_prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/conf/params_prod.sh -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/deploy.sh -------------------------------------------------------------------------------- /src/code/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/src/code/config/config.json -------------------------------------------------------------------------------- /src/code/security_hub_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/src/code/security_hub_integration.py -------------------------------------------------------------------------------- /src/code/sync_securityhub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/src/code/sync_securityhub.py -------------------------------------------------------------------------------- /src/code/test_securityhub_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/src/code/test_securityhub_integration.py -------------------------------------------------------------------------------- /src/code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/src/code/utils.py -------------------------------------------------------------------------------- /src/template/cloudformation_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/src/template/cloudformation_template.yaml -------------------------------------------------------------------------------- /src/template/lpt-basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/src/template/lpt-basic.yaml -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/test.sh -------------------------------------------------------------------------------- /test/custom_new.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/test/custom_new.template -------------------------------------------------------------------------------- /test/custom_notified_existing.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/test/custom_notified_existing.template -------------------------------------------------------------------------------- /test/imported_archived_existing.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/test/imported_archived_existing.template -------------------------------------------------------------------------------- /test/imported_archived_new.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/test/imported_archived_new.template -------------------------------------------------------------------------------- /test/imported_archived_notified.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/test/imported_archived_notified.template -------------------------------------------------------------------------------- /test/imported_new_automated_standard_check.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/test/imported_new_automated_standard_check.template -------------------------------------------------------------------------------- /test/imported_new_notautomated.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/aws-securityhub-jira-software-integration/HEAD/test/imported_new_notautomated.template --------------------------------------------------------------------------------