Accessing AppSync environmental variables in resolver

0

how to access AppSync environmental variables in resolver

Jehan
demandé il y a un mois152 vues
2 réponses
2

With the recent update to AWS AppSync, you can now access environment variables directly in your GraphQL resolvers and functions. You can define these environment variables in the AWS AppSync console or using infrastructure as code tools like AWS CloudFormation or the AWS Cloud Development Kit (CDK). At runtime, you can access these variables in your resolver and function code, enabling dynamic configuration of your GraphQL API without modifying the code implementation.

For more details, you can refer to the Environmental Variables.

profile picture
EXPERT
répondu il y a un mois
  • Can I know how exactly I can get the account id in the resolver? (Ex to get the token I use this: #set($token = $context.request.headers.get("Authorization")) )

  • You can use the $context.identity.accountId property in your resolver mapping template. This property is available when using AWS_IAM as the authorization type. Here's an example of how to set and use it:

    #set($accountId = $context.identity.accountId)

    You can then use the $accountId variable in your resolver logic as needed.

    Important Sources

  • Thanks. But I'm using Cognito for authorization. Therefore I cannot use this method. Therefore what I'm trying to do is define account id as an environmental variable in appsync so that I can access it from the resolver so that I don't have to hard code account id into the resolver itself. Therefore I need to know how to access environmental variables in the resolver.

0
Réponse acceptée

I can access environment variables defined in appsync as #set($accountId = $context.env.account_id)

Jehan
répondu il y a un mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions