Skip to content

Commit

Permalink
debug action
Browse files Browse the repository at this point in the history
  • Loading branch information
vijayamadhavareddy committed Apr 15, 2024
1 parent 95e6016 commit 9520917
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/aws_ssm.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ def run(aws_parameters: dict[str, AwsParameter]):
if __name__ == '__main__':
print("test")
input_params = os.getenv('INPUT_PARAMS')
print(f"input_params: {input_params}")
print(f"input_params")
print(input_params)
params_inline = parse_input_params(input_params) if input_params is not None else {}
print("params_inline")
print(params_inline)
Expand Down
2 changes: 2 additions & 0 deletions src/inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ def env_to_param(env_line: str) -> AwsParameter:

def ensure_env_input(input_params: str):
param_lines = input_params.split(sep="\n")
print("param_lines")
print(param_lines)
return [param_line.strip() for param_line in param_lines]


Expand Down

0 comments on commit 9520917

Please sign in to comment.