Skip to content

Commit d301c3a

Browse files
committed
we used to ignore lists here
1 parent 4b6c2d0 commit d301c3a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/robusta/core/playbooks/playbook_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ def replace_env_vars_values(values: Dict) -> Dict:
3333
env_var_value = replace_env_vars_values(value)
3434
if env_var_value:
3535
values[key] = env_var_value
36-
36+
elif isinstance(value, list):
37+
values[key] = [replace_env_vars_values(iter) for iter in value]
3738
return values
3839

3940

0 commit comments

Comments
 (0)