AppSync use / access CloudFront Viewer Headers

1

CloudFront has a number of headers regarding viewer information that we would like to access in our AppSync vtl / resolvers, see: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-cloudfront-headers.html

Specifically, we'd like to use CloudFront-Viewer-Country-Region

In a 'normal' Cloudfront -> S3 origin for example, we would add an Origin request policy to forward the headers on.

How is this possible in Appsync please?

2 Answers
1

Hey the way I found to solve it is to put Cloudfront distribution in front of the app-sync one. You can configure this new CF distribution to include the headers so they can be used in the resolvers.

P.S.: AWS it would be nice to be able to to configure the header behavior of the CF you guys create for the AppSync instance so we do no need to do this :)

answered a year ago
  • Thanks - yeah, this is what we've ended up doing by adding a kind of reverse proxy to our front end's cloudfront dist.

0

You can access all request headers via the $context.request.headers construct.

AWS
answered a year ago
  • Hi thanks - yes we know this, but the point is it doesn't include all the headers from cloudfront.

    e.g. we get cloudfront-viewer-country but not cloudfront-viewer-country-region

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions