Skip to content

Commit c3d49ff

Browse files
committed
Budgets Costfilter datatype fix
1 parent d936f41 commit c3d49ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data-collection/deploy/module-budgets.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Resources:
145145
return
146146
147147
cleaned_filters = {
148-
re.sub(r'[:\\]', '_', key): clean_value(value)
148+
re.sub(r'\W+', '_', key): clean_value(value)
149149
for key, value in cost_filters.items()
150150
}
151151
budget['CostFilters'] = cleaned_filters

0 commit comments

Comments
 (0)