I am trying to store an ssm parameter using AWS cli
URL='https://gatewayurl.com/dev'
aws ssm put-parameter --name "/dev/app/HOSTNAME" --value $URL --type String --overwrite
SSM parameter is being uploaded however it does not store value https://gatewayurl.com/dev
. Insteads it stores the value Hello World
which is the response for the URL provided. Is there a way that I can store the URL as a string without it being evaluated as a HTTP request and thus string the response instead of the URL?