We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f2e156 commit ab47ad5Copy full SHA for ab47ad5
1 file changed
src/confcom/azext_confcom/custom.py
@@ -37,7 +37,7 @@ def acipolicygen_confcom(
37
virtual_node_yaml_path: str,
38
infrastructure_svn: str,
39
tar_mapping_location: str,
40
- container_definitions: list,
+ container_definitions: Optional[list] = None,
41
approve_wildcards: str = False,
42
outraw: bool = False,
43
outraw_pretty_print: bool = False,
@@ -65,6 +65,9 @@ def acipolicygen_confcom(
65
"For additional information, see http://aka.ms/clisecrets. \n",
66
)
67
68
+ if container_definitions is None:
69
+ container_definitions = []
70
+
71
stdio_enabled = resolve_stdio(enable_stdio, disable_stdio)
72
73
if print_existing_policy and arm_template:
0 commit comments