-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
executable file
·30 lines (24 loc) · 1.18 KB
/
app.py
File metadata and controls
executable file
·30 lines (24 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python3
"""Jira Integration CDK Application.
This module defines the CDK application for deploying AWS Security Incident Response
Jira integration infrastructure. It creates the common stack and Jira-specific stack.
TODO: rename this file to app_jira.py once the Service Now integration implementation is complete
TODO: see https://app.asana.com/1/8442528107068/project/1209571477232011/task/1210524326651427?focus=true
"""
import aws_cdk as cdk
from aws_security_incident_response_sample_integrations.aws_security_incident_response_sample_integrations_common_stack import (
AwsSecurityIncidentResponseSampleIntegrationsCommonStack,
)
from aws_security_incident_response_sample_integrations.aws_security_incident_response_jira_integration_stack import (
AwsSecurityIncidentResponseJiraIntegrationStack,
)
app = cdk.App()
# Create common stack
common_stack = AwsSecurityIncidentResponseSampleIntegrationsCommonStack(
app, "AwsSecurityIncidentResponseSampleIntegrationsCommonStack"
)
# Create Jira integration stack
jira_stack = AwsSecurityIncidentResponseJiraIntegrationStack(
app, "AwsSecurityIncidentResponseJiraIntegrationStack", common_stack=common_stack
)
app.synth()