I am setting up CloudFront using CloudFormation, but I need to configure the Headers property of the ForwardedValues property. It should be setup in such a way that
Using Yaml:
Headers: ["*"]
An example inside the "ForwardedValues" element for some context:
ForwardedValues:
Cookies:
Forward: all
Headers: ["*"]
QueryString: true
Please note that this might lead to poor performance (allegedly) due to the caching of "Date" headers as documented [here]
This is I see in getdistrinbution config:
"ForwardedValues": { "Headers": { "Items": [ "*" ]
You can try it to see if this works.