Skip to content

Commit

Permalink
testing file based approach
Browse files Browse the repository at this point in the history
  • Loading branch information
vijayamadhavareddy committed May 17, 2024
1 parent 9a172dd commit b6533b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aws_ssm.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def run(aws_parameters: dict[str, AwsParameter]):


if __name__ == '__main__':
input_params = os.getenv('INPUT_PARAMS')
input_params = os.getenv('INPUT_PARAMS', None)
print(f'Input parameters: {input_params}')
params_inline = parse_input_params(input_params) if input_params is not None else {}
params_from_file = {}
Expand Down

0 comments on commit b6533b2

Please sign in to comment.