Not pulumi related, but I maybe someone can still ...
# aws
f
Not pulumi related, but I maybe someone can still help me with an answer. Is it normal for sqs to replace
+
with (empty space) in header values? For example: If i pass the message attribute
Foo: Some+header+value
it will be transformed to ->
Foo: Some header value
I have an integration between api gateway and sqs and In the logs I can see that the message is sent correctly from apigateway integration but when i get to receive in sqs, it has the characters replaced.
d
that's urldecode() spaces in urls can be encoded as + signs
f
@damp-fall-55922 thanks for the reply. You're right, I had to url encode the string before passing it to sqs. All works now 🙂