File tree Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ class InitInputs(TypedDict):
1818class PlanInputs (InitInputs ):
1919 """Common input variables for actions that generate a plan"""
2020 INPUT_VARIABLES : str
21- INPUT_VAR : str
2221 INPUT_VAR_FILE : str
2322 INPUT_PARALLELISM : str
2423
Original file line number Diff line number Diff line change @@ -99,9 +99,6 @@ def format_classic_description(action_inputs: PlanPrInputs) -> str:
9999 if action_inputs ["INPUT_BACKEND_CONFIG_FILE" ]:
100100 label += f'\n With backend config files: `{ action_inputs ["INPUT_BACKEND_CONFIG_FILE" ]} `'
101101
102- if action_inputs ["INPUT_VAR" ]:
103- label += f'\n With vars: `{ action_inputs ["INPUT_VAR" ]} `'
104-
105102 if action_inputs ["INPUT_VAR_FILE" ]:
106103 label += f'\n With var files: `{ action_inputs ["INPUT_VAR_FILE" ]} `'
107104
@@ -153,13 +150,6 @@ def format_description(action_inputs: PlanPrInputs, sensitive_variables: List[st
153150 if action_inputs ["INPUT_BACKEND_CONFIG_FILE" ]:
154151 label += f'\n With backend config files: `{ action_inputs ["INPUT_BACKEND_CONFIG_FILE" ]} `'
155152
156- if action_inputs ["INPUT_VAR" ]:
157- label += '\n :warning: Using deprecated var input. Use the variables input instead.'
158- if any (var_name in action_inputs ["INPUT_VAR" ] for var_name in sensitive_variables ):
159- label += '\n With vars: (sensitive values)'
160- else :
161- label += f'\n With vars: `{ action_inputs ["INPUT_VAR" ]} `'
162-
163153 if action_inputs ["INPUT_VAR_FILE" ]:
164154 label += f'\n With var files: `{ action_inputs ["INPUT_VAR_FILE" ]} `'
165155
You can’t perform that action at this time.
0 commit comments