Skip to content

Commit 76d0935

Browse files
Merge pull request #34 from runZeroInc/update/centra
Better handling of Centra labels to asset tag mappings
2 parents 4cf8a2c + f19fd3f commit 76d0935

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

akamai-guardicore-centra/custom-integration-centra-v4-api.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def build_assets(assets, token):
7777
tags = []
7878
for label in label_names:
7979
split_label = label.split(':')
80-
tag = split_label[0] + '=' + split_label[1]
80+
tag = split_label[0].strip().replace(' ', '_') + '=' + split_label[1].strip().replace(' ', '_')
8181
tags.append(tag)
8282

8383

docs/integrations.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"lastUpdated": "2026-01-15T15:32:00.895289Z",
2+
"lastUpdated": "2026-01-22T14:03:19.649909Z",
33
"totalIntegrations": 32,
44
"integrationDetails": [
55
{

0 commit comments

Comments
 (0)