Hi all, I am working on deploying a container on ...
# aws
c
Hi all, I am working on deploying a container on Lambda with an override (code snippet below) and need to include a CMD override. I can pass in an entrypoint, but can't get it to pass in a CMD override. Any thoughts on how this could work? arc_process_lambda = aws.lambda_.Function("arc_process_lambda", image_uri=image_address, role=process_lambda_role.arn, package_type = 'Image', image_config=aws.lambda_.FunctionImageConfigArgs(entry_points=["functions.process_nclimgrid_files"]) )
...and silly me. The image config line should read:
image_config=aws.lambda_.FunctionImageConfigArgs(commands=["functions.process_nclimgrid_files"])
Now it works...
🎉 1