cartography 0.92.0rc1__py3-none-any.whl → 0.92.0rc2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cartography might be problematic. Click here for more details.
- cartography/data/indexes.cypher +0 -6
- cartography/intel/aws/ec2/launch_templates.py +97 -78
- cartography/models/aws/ec2/launch_template_versions.py +81 -0
- cartography/models/aws/ec2/launch_templates.py +46 -0
- {cartography-0.92.0rc1.dist-info → cartography-0.92.0rc2.dist-info}/METADATA +1 -1
- {cartography-0.92.0rc1.dist-info → cartography-0.92.0rc2.dist-info}/RECORD +11 -10
- cartography/data/jobs/cleanup/aws_import_ec2_launch_templates_cleanup.json +0 -13
- {cartography-0.92.0rc1.dist-info → cartography-0.92.0rc2.dist-info}/LICENSE +0 -0
- {cartography-0.92.0rc1.dist-info → cartography-0.92.0rc2.dist-info}/NOTICE +0 -0
- {cartography-0.92.0rc1.dist-info → cartography-0.92.0rc2.dist-info}/WHEEL +0 -0
- {cartography-0.92.0rc1.dist-info → cartography-0.92.0rc2.dist-info}/entry_points.txt +0 -0
- {cartography-0.92.0rc1.dist-info → cartography-0.92.0rc2.dist-info}/top_level.txt +0 -0
cartography/data/indexes.cypher
CHANGED
|
@@ -200,12 +200,6 @@ CREATE INDEX IF NOT EXISTS FOR (n:KMSGrant) ON (n.lastupdated);
|
|
|
200
200
|
CREATE INDEX IF NOT EXISTS FOR (n:LaunchConfiguration) ON (n.id);
|
|
201
201
|
CREATE INDEX IF NOT EXISTS FOR (n:LaunchConfiguration) ON (n.name);
|
|
202
202
|
CREATE INDEX IF NOT EXISTS FOR (n:LaunchConfiguration) ON (n.lastupdated);
|
|
203
|
-
CREATE INDEX IF NOT EXISTS FOR (n:LaunchTemplate) ON (n.id);
|
|
204
|
-
CREATE INDEX IF NOT EXISTS FOR (n:LaunchTemplate) ON (n.name);
|
|
205
|
-
CREATE INDEX IF NOT EXISTS FOR (n:LaunchTemplate) ON (n.lastupdated);
|
|
206
|
-
CREATE INDEX IF NOT EXISTS FOR (n:LaunchTemplateVersion) ON (n.id);
|
|
207
|
-
CREATE INDEX IF NOT EXISTS FOR (n:LaunchTemplateVersion) ON (n.name);
|
|
208
|
-
CREATE INDEX IF NOT EXISTS FOR (n:LaunchTemplateVersion) ON (n.lastupdated);
|
|
209
203
|
CREATE INDEX IF NOT EXISTS FOR (n:LoadBalancer) ON (n.dnsname);
|
|
210
204
|
CREATE INDEX IF NOT EXISTS FOR (n:LoadBalancer) ON (n.id);
|
|
211
205
|
CREATE INDEX IF NOT EXISTS FOR (n:LoadBalancer) ON (n.lastupdated);
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import logging
|
|
2
|
-
from typing import
|
|
3
|
-
from typing import List
|
|
2
|
+
from typing import Any
|
|
4
3
|
|
|
5
4
|
import boto3
|
|
6
5
|
import neo4j
|
|
7
6
|
|
|
8
7
|
from .util import get_botocore_config
|
|
8
|
+
from cartography.client.core.tx import load
|
|
9
|
+
from cartography.models.aws.ec2.launch_template_versions import LaunchTemplateVersionSchema
|
|
10
|
+
from cartography.models.aws.ec2.launch_templates import LaunchTemplateSchema
|
|
9
11
|
from cartography.util import aws_handle_regions
|
|
10
|
-
from cartography.util import run_cleanup_job
|
|
11
12
|
from cartography.util import timeit
|
|
12
13
|
|
|
13
14
|
logger = logging.getLogger(__name__)
|
|
@@ -15,101 +16,119 @@ logger = logging.getLogger(__name__)
|
|
|
15
16
|
|
|
16
17
|
@timeit
|
|
17
18
|
@aws_handle_regions
|
|
18
|
-
def get_launch_templates(boto3_session: boto3.session.Session, region: str) ->
|
|
19
|
+
def get_launch_templates(boto3_session: boto3.session.Session, region: str) -> list[dict[str, Any]]:
|
|
19
20
|
client = boto3_session.client('ec2', region_name=region, config=get_botocore_config())
|
|
20
21
|
paginator = client.get_paginator('describe_launch_templates')
|
|
21
|
-
templates:
|
|
22
|
+
templates: list[dict[str, Any]] = []
|
|
22
23
|
for page in paginator.paginate():
|
|
23
24
|
templates.extend(page['LaunchTemplates'])
|
|
24
|
-
for template in templates:
|
|
25
|
-
template_versions: List[Dict] = []
|
|
26
|
-
v_paginator = client.get_paginator('describe_launch_template_versions')
|
|
27
|
-
for versions in v_paginator.paginate(LaunchTemplateId=template['LaunchTemplateId']):
|
|
28
|
-
template_versions.extend(versions["LaunchTemplateVersions"])
|
|
29
|
-
template["_template_versions"] = template_versions
|
|
30
25
|
return templates
|
|
31
26
|
|
|
32
27
|
|
|
28
|
+
def transform_launch_templates(templates: list[dict[str, Any]]) -> list[dict[str, Any]]:
|
|
29
|
+
result: list[dict[str, Any]] = []
|
|
30
|
+
for template in templates:
|
|
31
|
+
current = template.copy()
|
|
32
|
+
current['CreateTime'] = str(int(current['CreateTime'].timestamp()))
|
|
33
|
+
result.append(current)
|
|
34
|
+
return result
|
|
35
|
+
|
|
36
|
+
|
|
33
37
|
@timeit
|
|
34
38
|
def load_launch_templates(
|
|
35
|
-
neo4j_session: neo4j.Session,
|
|
39
|
+
neo4j_session: neo4j.Session,
|
|
40
|
+
data: list[dict[str, Any]],
|
|
41
|
+
region: str,
|
|
42
|
+
current_aws_account_id: str,
|
|
43
|
+
update_tag: int,
|
|
36
44
|
) -> None:
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
template.name = lt.LaunchTemplateName,
|
|
42
|
-
template.create_time = lt.CreateTime,
|
|
43
|
-
template.created_by = lt.CreatedBy
|
|
44
|
-
SET template.default_version_number = lt.DefaultVersionNumber,
|
|
45
|
-
template.latest_version_number = lt.LatestVersionNumber,
|
|
46
|
-
template.lastupdated = $update_tag,
|
|
47
|
-
template.region=$Region
|
|
48
|
-
WITH template, lt._template_versions as versions
|
|
49
|
-
MATCH (aa:AWSAccount{id: $AWS_ACCOUNT_ID})
|
|
50
|
-
MERGE (aa)-[r:RESOURCE]->(template)
|
|
51
|
-
ON CREATE SET r.firstseen = timestamp()
|
|
52
|
-
SET r.lastupdated = $update_tag
|
|
53
|
-
WITH template, versions
|
|
54
|
-
UNWIND versions as tv
|
|
55
|
-
MERGE (version:LaunchTemplateVersion{id: tv.LaunchTemplateId + '-' + tv.VersionNumber})
|
|
56
|
-
ON CREATE SET version.firstseen = timestamp(),
|
|
57
|
-
version.name = tv.LaunchTemplateName,
|
|
58
|
-
version.create_time = tv.CreateTime,
|
|
59
|
-
version.created_by = tv.CreatedBy,
|
|
60
|
-
version.default_version = tv.DefaultVersion,
|
|
61
|
-
version.version_number = tv.VersionNumber,
|
|
62
|
-
version.version_description = tv.VersionDescription,
|
|
63
|
-
version.kernel_id = tv.LaunchTemplateData.KernelId,
|
|
64
|
-
version.ebs_optimized = tv.LaunchTemplateData.EbsOptimized,
|
|
65
|
-
version.iam_instance_profile_arn = tv.LaunchTemplateData.IamInstanceProfile.Arn,
|
|
66
|
-
version.iam_instance_profile_name = tv.LaunchTemplateData.IamInstanceProfile.Name,
|
|
67
|
-
version.image_id = tv.LaunchTemplateData.ImageId,
|
|
68
|
-
version.instance_type = tv.LaunchTemplateData.InstanceType,
|
|
69
|
-
version.key_name = tv.LaunchTemplateData.KeyName,
|
|
70
|
-
version.monitoring_enabled = tv.LaunchTemplateData.Monitoring.Enabled,
|
|
71
|
-
version.ramdisk_id = tv.LaunchTemplateData.RamdiskId,
|
|
72
|
-
version.disable_api_termination = tv.LaunchTemplateData.DisableApiTermination,
|
|
73
|
-
version.instance_initiated_shutdown_behavior = tv.LaunchTemplateData.InstanceInitiatedShutdownBehavior,
|
|
74
|
-
version.security_group_ids = tv.LaunchTemplateData.SecurityGroupIds,
|
|
75
|
-
version.security_groups = tv.LaunchTemplateData.SecurityGroups
|
|
76
|
-
SET version.lastupdated = $update_tag,
|
|
77
|
-
version.region=$Region
|
|
78
|
-
WITH template, version
|
|
79
|
-
MERGE (template)-[r:VERSION]->(version)
|
|
80
|
-
ON CREATE SET r.firstseen = timestamp()
|
|
81
|
-
SET r.lastupdated = $update_tag
|
|
82
|
-
"""
|
|
83
|
-
for lt in data:
|
|
84
|
-
lt['CreateTime'] = str(int(lt['CreateTime'].timestamp()))
|
|
85
|
-
for tv in lt["_template_versions"]:
|
|
86
|
-
tv['CreateTime'] = str(int(tv['CreateTime'].timestamp()))
|
|
87
|
-
|
|
88
|
-
neo4j_session.run(
|
|
89
|
-
ingest_lt,
|
|
90
|
-
launch_templates=data,
|
|
91
|
-
AWS_ACCOUNT_ID=current_aws_account_id,
|
|
45
|
+
load(
|
|
46
|
+
neo4j_session,
|
|
47
|
+
LaunchTemplateSchema(),
|
|
48
|
+
data,
|
|
92
49
|
Region=region,
|
|
93
|
-
|
|
50
|
+
AWS_ID=current_aws_account_id,
|
|
51
|
+
lastupdated=update_tag,
|
|
94
52
|
)
|
|
95
53
|
|
|
96
54
|
|
|
97
55
|
@timeit
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
56
|
+
@aws_handle_regions
|
|
57
|
+
def get_launch_template_versions(
|
|
58
|
+
boto3_session: boto3.session.Session,
|
|
59
|
+
templates: list[dict[str, Any]],
|
|
60
|
+
region: str,
|
|
61
|
+
) -> list[dict[str, Any]]:
|
|
62
|
+
client = boto3_session.client('ec2', region_name=region, config=get_botocore_config())
|
|
63
|
+
v_paginator = client.get_paginator('describe_launch_template_versions')
|
|
64
|
+
template_versions = []
|
|
65
|
+
for template in templates:
|
|
66
|
+
for versions in v_paginator.paginate(LaunchTemplateId=template['LaunchTemplateId']):
|
|
67
|
+
template_versions.extend(versions['LaunchTemplateVersions'])
|
|
68
|
+
return template_versions
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
def transform_launch_template_versions(versions: list[dict[str, Any]]) -> list[dict[str, Any]]:
|
|
72
|
+
result: list[dict[str, Any]] = []
|
|
73
|
+
for version in versions:
|
|
74
|
+
current = version.copy()
|
|
75
|
+
|
|
76
|
+
# Reformat some fields
|
|
77
|
+
current['Id'] = f"{version['LaunchTemplateId']}-{version['VersionNumber']}"
|
|
78
|
+
current['CreateTime'] = str(int(version['CreateTime'].timestamp()))
|
|
79
|
+
|
|
80
|
+
# Handle the nested object returned from boto
|
|
81
|
+
ltd = version['LaunchTemplateData']
|
|
82
|
+
current['KernelId'] = ltd.get('KernelId')
|
|
83
|
+
current['EbsOptimized'] = ltd.get('EbsOptimized')
|
|
84
|
+
current['IamInstanceProfileArn'] = ltd.get('IamInstanceProfileArn')
|
|
85
|
+
current['IamInstanceProfileName'] = ltd.get('IamInstanceProfileName')
|
|
86
|
+
current['ImageId'] = ltd.get('ImageId')
|
|
87
|
+
current['InstanceType'] = ltd.get('InstanceType')
|
|
88
|
+
current['KeyName'] = ltd.get('KeyName')
|
|
89
|
+
current['MonitoringEnabled'] = ltd.get('MonitoringEnabled')
|
|
90
|
+
current['RamdiskId'] = ltd.get('RamdiskId')
|
|
91
|
+
current['DisableApiTermination'] = ltd.get('DisableApiTermination')
|
|
92
|
+
current['InstanceInitiatedShutDownBehavior'] = ltd.get('InstanceInitiatedShutDownBehavior')
|
|
93
|
+
current['SecurityGroupIds'] = ltd.get('SecurityGroupIds')
|
|
94
|
+
current['SecurityGroups'] = ltd.get('SecurityGroups')
|
|
95
|
+
result.append(current)
|
|
96
|
+
return result
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
@timeit
|
|
100
|
+
def load_launch_template_versions(
|
|
101
|
+
neo4j_session: neo4j.Session,
|
|
102
|
+
data: list[dict[str, Any]],
|
|
103
|
+
region: str,
|
|
104
|
+
current_aws_account_id: str,
|
|
105
|
+
update_tag: int,
|
|
106
|
+
) -> None:
|
|
107
|
+
load(
|
|
101
108
|
neo4j_session,
|
|
102
|
-
|
|
109
|
+
LaunchTemplateVersionSchema(),
|
|
110
|
+
data,
|
|
111
|
+
Region=region,
|
|
112
|
+
AWS_ID=current_aws_account_id,
|
|
113
|
+
lastupdated=update_tag,
|
|
103
114
|
)
|
|
104
115
|
|
|
105
116
|
|
|
106
117
|
@timeit
|
|
107
118
|
def sync_ec2_launch_templates(
|
|
108
|
-
neo4j_session: neo4j.Session,
|
|
109
|
-
|
|
119
|
+
neo4j_session: neo4j.Session,
|
|
120
|
+
boto3_session: boto3.session.Session,
|
|
121
|
+
regions: list[str],
|
|
122
|
+
current_aws_account_id: str,
|
|
123
|
+
update_tag: int,
|
|
124
|
+
common_job_parameters: dict[str, Any],
|
|
110
125
|
) -> None:
|
|
111
126
|
for region in regions:
|
|
112
|
-
logger.
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
127
|
+
logger.info(f"Syncing launch templates for region '{region}' in account '{current_aws_account_id}'.")
|
|
128
|
+
templates = get_launch_templates(boto3_session, region)
|
|
129
|
+
templates = transform_launch_templates(templates)
|
|
130
|
+
load_launch_templates(neo4j_session, templates, region, current_aws_account_id, update_tag)
|
|
131
|
+
|
|
132
|
+
versions = get_launch_template_versions(boto3_session, templates, region)
|
|
133
|
+
versions = transform_launch_template_versions(versions)
|
|
134
|
+
load_launch_template_versions(neo4j_session, versions, region, current_aws_account_id, update_tag)
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
from dataclasses import dataclass
|
|
2
|
+
|
|
3
|
+
from cartography.models.core.common import PropertyRef
|
|
4
|
+
from cartography.models.core.nodes import CartographyNodeProperties
|
|
5
|
+
from cartography.models.core.nodes import CartographyNodeSchema
|
|
6
|
+
from cartography.models.core.relationships import CartographyRelProperties
|
|
7
|
+
from cartography.models.core.relationships import CartographyRelSchema
|
|
8
|
+
from cartography.models.core.relationships import LinkDirection
|
|
9
|
+
from cartography.models.core.relationships import make_target_node_matcher
|
|
10
|
+
from cartography.models.core.relationships import OtherRelationships
|
|
11
|
+
from cartography.models.core.relationships import TargetNodeMatcher
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
@dataclass(frozen=True)
|
|
15
|
+
class LaunchTemplateVersionNodeProperties(CartographyNodeProperties):
|
|
16
|
+
id: PropertyRef = PropertyRef('Id')
|
|
17
|
+
name: PropertyRef = PropertyRef('LaunchTemplateName')
|
|
18
|
+
create_time: PropertyRef = PropertyRef('CreateTime')
|
|
19
|
+
created_by: PropertyRef = PropertyRef('CreatedBy')
|
|
20
|
+
default_version: PropertyRef = PropertyRef('DefaultVersion')
|
|
21
|
+
version_number: PropertyRef = PropertyRef('VersionNumber')
|
|
22
|
+
version_description: PropertyRef = PropertyRef('VersionDescription')
|
|
23
|
+
kernel_id: PropertyRef = PropertyRef('KernelId')
|
|
24
|
+
ebs_optimized: PropertyRef = PropertyRef('EbsOptimized')
|
|
25
|
+
iam_instance_profile_arn: PropertyRef = PropertyRef('IamInstanceProfileArn')
|
|
26
|
+
iam_instance_profile_name: PropertyRef = PropertyRef('IamInstanceProfileName')
|
|
27
|
+
image_id: PropertyRef = PropertyRef('ImageId')
|
|
28
|
+
instance_type: PropertyRef = PropertyRef('InstanceType')
|
|
29
|
+
key_name: PropertyRef = PropertyRef('KeyName')
|
|
30
|
+
monitoring_enabled: PropertyRef = PropertyRef('MonitoringEnabled')
|
|
31
|
+
ramdisk_id: PropertyRef = PropertyRef('RamdiskId')
|
|
32
|
+
disable_api_termination: PropertyRef = PropertyRef('DisableApiTermination')
|
|
33
|
+
instance_initiated_shutdown_behavior: PropertyRef = PropertyRef('InstanceInitiatedShutdownBehavior')
|
|
34
|
+
security_group_ids: PropertyRef = PropertyRef('SecurityGroupIds')
|
|
35
|
+
security_groups: PropertyRef = PropertyRef('SecurityGroups')
|
|
36
|
+
region: PropertyRef = PropertyRef('Region', set_in_kwargs=True)
|
|
37
|
+
lastupdated: PropertyRef = PropertyRef('lastupdated', set_in_kwargs=True)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
@dataclass(frozen=True)
|
|
41
|
+
class LaunchTemplateVersionToAwsAccountRelProperties(CartographyRelProperties):
|
|
42
|
+
lastupdated: PropertyRef = PropertyRef('lastupdated', set_in_kwargs=True)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
@dataclass(frozen=True)
|
|
46
|
+
class LaunchTemplateVersionToAWSAccount(CartographyRelSchema):
|
|
47
|
+
target_node_label: str = 'AWSAccount'
|
|
48
|
+
target_node_matcher: TargetNodeMatcher = make_target_node_matcher(
|
|
49
|
+
{'id': PropertyRef('AWS_ID', set_in_kwargs=True)},
|
|
50
|
+
)
|
|
51
|
+
direction: LinkDirection = LinkDirection.INWARD
|
|
52
|
+
rel_label: str = "RESOURCE"
|
|
53
|
+
properties: LaunchTemplateVersionToAwsAccountRelProperties = LaunchTemplateVersionToAwsAccountRelProperties()
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
@dataclass(frozen=True)
|
|
57
|
+
class LaunchTemplateVersionToLTRelProperties(CartographyRelProperties):
|
|
58
|
+
lastupdated: PropertyRef = PropertyRef('lastupdated', set_in_kwargs=True)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
@dataclass(frozen=True)
|
|
62
|
+
class LaunchTemplateVersionToLT(CartographyRelSchema):
|
|
63
|
+
target_node_label: str = 'LaunchTemplate'
|
|
64
|
+
target_node_matcher: TargetNodeMatcher = make_target_node_matcher(
|
|
65
|
+
{'id': PropertyRef('LaunchTemplateId')},
|
|
66
|
+
)
|
|
67
|
+
direction: LinkDirection = LinkDirection.INWARD
|
|
68
|
+
rel_label: str = "VERSION"
|
|
69
|
+
properties: LaunchTemplateVersionToLTRelProperties = LaunchTemplateVersionToLTRelProperties()
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
@dataclass(frozen=True)
|
|
73
|
+
class LaunchTemplateVersionSchema(CartographyNodeSchema):
|
|
74
|
+
label: str = 'LaunchTemplateVersion'
|
|
75
|
+
properties: LaunchTemplateVersionNodeProperties = LaunchTemplateVersionNodeProperties()
|
|
76
|
+
sub_resource_relationship: LaunchTemplateVersionToAWSAccount = LaunchTemplateVersionToAWSAccount()
|
|
77
|
+
other_relationships: OtherRelationships = OtherRelationships(
|
|
78
|
+
[
|
|
79
|
+
LaunchTemplateVersionToLT(),
|
|
80
|
+
],
|
|
81
|
+
)
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
from dataclasses import dataclass
|
|
2
|
+
|
|
3
|
+
from cartography.models.core.common import PropertyRef
|
|
4
|
+
from cartography.models.core.nodes import CartographyNodeProperties
|
|
5
|
+
from cartography.models.core.nodes import CartographyNodeSchema
|
|
6
|
+
from cartography.models.core.relationships import CartographyRelProperties
|
|
7
|
+
from cartography.models.core.relationships import CartographyRelSchema
|
|
8
|
+
from cartography.models.core.relationships import LinkDirection
|
|
9
|
+
from cartography.models.core.relationships import make_target_node_matcher
|
|
10
|
+
from cartography.models.core.relationships import TargetNodeMatcher
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
@dataclass(frozen=True)
|
|
14
|
+
class LaunchTemplateNodeProperties(CartographyNodeProperties):
|
|
15
|
+
id: PropertyRef = PropertyRef('LaunchTemplateId')
|
|
16
|
+
launch_template_id: PropertyRef = PropertyRef('LaunchTemplateId')
|
|
17
|
+
name: PropertyRef = PropertyRef('LaunchTemplateName')
|
|
18
|
+
create_time: PropertyRef = PropertyRef('CreateTime')
|
|
19
|
+
created_by: PropertyRef = PropertyRef('CreatedBy')
|
|
20
|
+
default_version_number: PropertyRef = PropertyRef('DefaultVersionNumber')
|
|
21
|
+
latest_version_number: PropertyRef = PropertyRef('LatestVersionNumber')
|
|
22
|
+
region: PropertyRef = PropertyRef('Region', set_in_kwargs=True)
|
|
23
|
+
lastupdated: PropertyRef = PropertyRef('lastupdated', set_in_kwargs=True)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
@dataclass(frozen=True)
|
|
27
|
+
class LaunchTemplateToAwsAccountRelProperties(CartographyRelProperties):
|
|
28
|
+
lastupdated: PropertyRef = PropertyRef('lastupdated', set_in_kwargs=True)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
@dataclass(frozen=True)
|
|
32
|
+
class LaunchTemplateToAWSAccount(CartographyRelSchema):
|
|
33
|
+
target_node_label: str = 'AWSAccount'
|
|
34
|
+
target_node_matcher: TargetNodeMatcher = make_target_node_matcher(
|
|
35
|
+
{'id': PropertyRef('AWS_ID', set_in_kwargs=True)},
|
|
36
|
+
)
|
|
37
|
+
direction: LinkDirection = LinkDirection.INWARD
|
|
38
|
+
rel_label: str = "RESOURCE"
|
|
39
|
+
properties: LaunchTemplateToAwsAccountRelProperties = LaunchTemplateToAwsAccountRelProperties()
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
@dataclass(frozen=True)
|
|
43
|
+
class LaunchTemplateSchema(CartographyNodeSchema):
|
|
44
|
+
label: str = 'LaunchTemplate'
|
|
45
|
+
properties: LaunchTemplateNodeProperties = LaunchTemplateNodeProperties()
|
|
46
|
+
sub_resource_relationship: LaunchTemplateToAWSAccount = LaunchTemplateToAWSAccount()
|
|
@@ -12,7 +12,7 @@ cartography/client/aws/iam.py,sha256=dYsGikc36DEsSeR2XVOVFFUDwuU9yWj_EVkpgVYCFgM
|
|
|
12
12
|
cartography/client/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
cartography/client/core/tx.py,sha256=4_kTBxrtlwsOM-e8Xtjf7wmmzwZ-DGRJL0rPFp0Xj0Q,10805
|
|
14
14
|
cartography/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
cartography/data/indexes.cypher,sha256=
|
|
15
|
+
cartography/data/indexes.cypher,sha256=PTQEUbC_Kmjj_wM-j6NJqLvETRIORreeqF6WlKmnHKg,27395
|
|
16
16
|
cartography/data/permission_relationships.yaml,sha256=RuKGGc_3ZUQ7ag0MssB8k_zaonCkVM5E8I_svBWTmGc,969
|
|
17
17
|
cartography/data/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
cartography/data/jobs/analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -36,7 +36,6 @@ cartography/data/jobs/cleanup/aws_import_account_access_key_cleanup.json,sha256=
|
|
|
36
36
|
cartography/data/jobs/cleanup/aws_import_apigateway_cleanup.json,sha256=wCV95ydo3dmlhK7VrDrxCqrP6dbhCCMTzcz_qaJQ4Jo,2189
|
|
37
37
|
cartography/data/jobs/cleanup/aws_import_config_cleanup.json,sha256=VCAJjEnFcQUR16VxKdpsOkBJEnhMuLk-7Kgm_p9k1NM,754
|
|
38
38
|
cartography/data/jobs/cleanup/aws_import_ec2_launch_configurations_cleanup.json,sha256=x9IIzb9Sr1353ygkA-qqUUbZS9XO2v3GzUHe-0J4Pw8,281
|
|
39
|
-
cartography/data/jobs/cleanup/aws_import_ec2_launch_templates_cleanup.json,sha256=tuJzb1wmKSPUiShX8zgNTz7Il_XhXZ7_uQE4_6iUjFI,524
|
|
40
39
|
cartography/data/jobs/cleanup/aws_import_ec2_security_groupinfo_cleanup.json,sha256=CackEgSs1PN15pTg8oIdS0amB-n-PsKODLAaqC3gf_A,1183
|
|
41
40
|
cartography/data/jobs/cleanup/aws_import_ecr_cleanup.json,sha256=7Sga9WlbhHe-VyoFaF0LrlhbAFvSSOjVKiRf_VW8To8,1355
|
|
42
41
|
cartography/data/jobs/cleanup/aws_import_ecs_cleanup.json,sha256=6HtmZy7gNC0ZxLU7I6C2KKcqpZhYRFyaJZCDA50DzAs,2126
|
|
@@ -176,7 +175,7 @@ cartography/intel/aws/ec2/images.py,sha256=DcGHJwZf8_K5iRCDJ2QOdP837TTJTwST02IRs
|
|
|
176
175
|
cartography/intel/aws/ec2/instances.py,sha256=mnTjdBY-4D-TGhH29UrSaLUW0Uft0JApDIJkkLz4zPc,12170
|
|
177
176
|
cartography/intel/aws/ec2/internet_gateways.py,sha256=dI-4-85_3DGGZZBcY_DN6XqESx9P26S6jKok314lcnQ,2883
|
|
178
177
|
cartography/intel/aws/ec2/key_pairs.py,sha256=SvRgd56vE4eouvTSNoFK8PP8HYoECO91goxc36oq_FY,2508
|
|
179
|
-
cartography/intel/aws/ec2/launch_templates.py,sha256=
|
|
178
|
+
cartography/intel/aws/ec2/launch_templates.py,sha256=GSOtwvqL6pG2fcROhhjXjOPntW-nR8msT-dQG_JuQkM,4862
|
|
180
179
|
cartography/intel/aws/ec2/load_balancer_v2s.py,sha256=95FfQQn740gexINIHDJizOM4OKzRtQT_y2XQMipQ5Dg,8661
|
|
181
180
|
cartography/intel/aws/ec2/load_balancers.py,sha256=1GwErzGqi3BKCARqfGJcD_r_D84rFKVy5kNMas9jAok,6756
|
|
182
181
|
cartography/intel/aws/ec2/network_interfaces.py,sha256=CzF8PooCYUQ2pk8DR8JDAhkWRUQSBj_27OsIfkL_-Cs,9199
|
|
@@ -283,6 +282,8 @@ cartography/models/aws/ec2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
|
283
282
|
cartography/models/aws/ec2/images.py,sha256=uGhXS7Xb6sKUdwwkS0O0dWP4sIREjusUaV_unODv9gE,3012
|
|
284
283
|
cartography/models/aws/ec2/instances.py,sha256=cNMHngdGNRhxoyID6AmG2F7CQGC1fYani8DV8lSKvsI,3902
|
|
285
284
|
cartography/models/aws/ec2/keypairs.py,sha256=scKC3SdExHAWkPNmb6tT9LK-9q4sweqS2ejFzMec10M,2630
|
|
285
|
+
cartography/models/aws/ec2/launch_template_versions.py,sha256=RitfnAuAj0XpFsCXkRbtUhHMAi8Vsvmtury231eKvGU,3897
|
|
286
|
+
cartography/models/aws/ec2/launch_templates.py,sha256=GqiwFuMp72LNSt2eQlp2WfdU_vHsom-xKV5AaUewSHQ,2157
|
|
286
287
|
cartography/models/aws/ec2/loadbalancerv2.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
287
288
|
cartography/models/aws/ec2/networkinterface_instance.py,sha256=t3oqcQ4GjYf7dwqPUGCiXd70ie4ibYLilOXiE5_Ad8g,4707
|
|
288
289
|
cartography/models/aws/ec2/networkinterfaces.py,sha256=z1-Dl6I79-TCxXKG8QBpSKga93lPCPaLR1XqKJZK3ME,4127
|
|
@@ -331,10 +332,10 @@ cartography/models/semgrep/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
|
331
332
|
cartography/models/semgrep/deployment.py,sha256=or5qZDuR51MXzINpH15jZrqmSUvXQevCNYWJ7D6v-JI,745
|
|
332
333
|
cartography/models/semgrep/findings.py,sha256=xrn8sgXpNMrNJbKQagaAVxaCG9bVjTATSRR2XRBR4rg,5386
|
|
333
334
|
cartography/models/semgrep/locations.py,sha256=kSk7Nn5Mn4Ob84MVZOo2GR0YFi-9Okq9pgA3FfC6_bk,3061
|
|
334
|
-
cartography-0.92.
|
|
335
|
-
cartography-0.92.
|
|
336
|
-
cartography-0.92.
|
|
337
|
-
cartography-0.92.
|
|
338
|
-
cartography-0.92.
|
|
339
|
-
cartography-0.92.
|
|
340
|
-
cartography-0.92.
|
|
335
|
+
cartography-0.92.0rc2.dist-info/LICENSE,sha256=489ZXeW9G90up6ep-D1n-lJgk9ciNT2yxXpFgRSidtk,11341
|
|
336
|
+
cartography-0.92.0rc2.dist-info/METADATA,sha256=67pexbhOi_WeS7TLuIGswFYPCfMbzOz6eSibk8FgvUo,1991
|
|
337
|
+
cartography-0.92.0rc2.dist-info/NOTICE,sha256=YOGAsjFtbyKj5tslYIg6V5jEYRuEvnSsIuDOUKj0Qj4,97
|
|
338
|
+
cartography-0.92.0rc2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
339
|
+
cartography-0.92.0rc2.dist-info/entry_points.txt,sha256=GVIAWD0o0_K077qMA_k1oZU4v-M0a8GLKGJR8tZ-qH8,112
|
|
340
|
+
cartography-0.92.0rc2.dist-info/top_level.txt,sha256=BHqsNJQiI6Q72DeypC1IINQJE59SLhU4nllbQjgJi9g,12
|
|
341
|
+
cartography-0.92.0rc2.dist-info/RECORD,,
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"statements": [{
|
|
3
|
-
"query": "MATCH (n:LaunchTemplateVersion)<-[:VERSION]-(:LaunchTemplate)<-[:RESOURCE]-(:AWSAccount{id: $AWS_ID}) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
4
|
-
"iterative": true,
|
|
5
|
-
"iterationsize": 100
|
|
6
|
-
},
|
|
7
|
-
{
|
|
8
|
-
"query": "MATCH (n:LaunchTemplate)<-[:RESOURCE]-(:AWSAccount{id: $AWS_ID}) WHERE n.lastupdated <> $UPDATE_TAG WITH n LIMIT $LIMIT_SIZE DETACH DELETE (n)",
|
|
9
|
-
"iterative": true,
|
|
10
|
-
"iterationsize": 100
|
|
11
|
-
}],
|
|
12
|
-
"name": "cleanup LaunchTemplate"
|
|
13
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|