Configure Gloo Gateway to route to AWS Lambda functions in different accounts than the AWS account that Gloo Gateway authenticates with.

About

In some cases, you might want Gloo Gateway to route requests to Lambda functions that exist in other AWS accounts that the account the you used to authenticate with Gloo Gateway. For example, your organization might establish multitenancy in which each team has its own AWS account where its Lambda functions exist, but your organization uses one dedicated AWS account for authentication purposes.

You can set up multi-account routing in the following ways:

  • IAM Roles for Service Accounts role-chained configuration (recommended): Use AWS IAM Roles for Service Accounts (IRSA) to configure routing to functions in different accounts. This method is recommended for routing to Lambda functions across multiple accounts.
  • Resource-based configuration: Use AWS resource-based configuration to enable routing to functions in different accounts. A resource-based policy can give other accounts the permission to invoke a function without requiring the other accounts to assume a role.

IRSA role-chained configuration

Use AWS IAM Roles for Service Accounts (IRSA) to configure routing to functions in different accounts. This method is recommended for using cross-account Lambda functions with Gloo Gateway.

Save AWS account details

  1. Save the ID of the AWS account that you want to use for authentication (the “authentication account”).

      export AUTH_ACCOUNT_ID=<auth_account_id>
      
  2. Save the region and ID of the AWS account where the Lambda functions that you want to invoke exist (the “Lambda account”).

      export AWS_LAMBDA_REGION=<lambda_account_region>
    export LAMBDA_ACCOUNT_ID=<lambda_account_id>
      
  3. Save the region and name of the EKS cluster that you plan to install Gloo Gateway in.

      export AWS_CLUSTER_REGION=<cluster_region>
    export CLUSTER_NAME=<cluster_name>
      
  4. Check whether your EKS cluster has an OIDC provider.

      export OIDC_PROVIDER=$(aws eks describe-cluster --name ${CLUSTER_NAME} --region ${AWS_CLUSTER_REGION} --query "cluster.identity.oidc.issuer" --output text | sed -e "s/^https:\/\///")
    echo $OIDC_PROVIDER
      
    • If an OIDC provider in the format oidc.eks.<region>.amazonaws.com/id/<cluster_id> is returned, continue to the next section.
    • If an OIDC provider is not returned, follow the AWS documentation to Create an IAM OIDC provider for your cluster, and then run this command again to save the OIDC provider in an environment variable.

Configure AWS IAM resources

Create roles in your authentication and Lambda AWS accounts.

  • In the account that you want to use to authenticate with AWS (the “authentication account”), you create a role that is used to assume the role in the Lambda account.
  • In the account that contains the Lambda functions you want to route to (the “Lambda account”), you create a role that is used to invoke the Lambda functions.
  1. In your authentication account, create the following resources.

    1. Create an IAM policy to allow access to the following four Lambda actions.

        cat >policy-1.json <<EOF
      {
         "Version": "2012-10-17",
         "Statement": [
             {
                 "Effect": "Allow",
                 "Action": [
                     "lambda:ListFunctions",
                     "lambda:InvokeFunction",
                     "lambda:GetFunction",
                     "lambda:InvokeAsync"
                 ],
                 "Resource": "*"
             }
         ]
      }
      EOF
      
      aws iam create-policy --policy-name lambda-auth-policy --policy-document file://policy-1.json
        
    2. Create the following IAM role, which associates the policy with the Kubernetes service account of the HTTP gateway proxy component. Note that the service account name http in the gloo-system namespace is specified, because in later steps you create an HTTP gateway named http.

        cat >role-1.json <<EOF
      {
        "Version": "2012-10-17",
        "Statement": [
          {
            "Effect": "Allow",
            "Principal": {
              "Service": "ec2.amazonaws.com"
            },
            "Action": "sts:AssumeRole"
          },
          {
            "Effect": "Allow",
            "Principal": {
              "Federated": "arn:aws:iam::${AUTH_ACCOUNT_ID}:oidc-provider/${OIDC_PROVIDER}"
            },
            "Action": "sts:AssumeRoleWithWebIdentity",
            "Condition": {
              "StringEquals": {
                "${OIDC_PROVIDER}:sub": [
                  "system:serviceaccount:gloo-system:http"
                ]
              }
            }
          }
        ]
      }
      EOF
      
      aws iam create-role --role-name lambda-auth-role --assume-role-policy-document file://role-1.json
        
    3. Attach the IAM role to the IAM policy. This IAM role for the service account is known as an IRSA.

        aws iam attach-role-policy --role-name lambda-auth-role --policy-arn=arn:aws:iam::${AUTH_ACCOUNT_ID}:policy/lambda-auth-policy
        
    4. Verify that the policy is attached to the role.

        aws iam list-attached-role-policies --role-name lambda-auth-role
        

      Example output:

        {
          "AttachedPolicies": [
              {
                  "PolicyName": "lambda-auth-policy",
                  "PolicyArn": "arn:aws:iam::111122223333:policy/lambda-auth-policy"
              }
          ]
      }
        
  2. In your Lambda account, create the following resources.

    1. Create an IAM policy that contains at least the lambda:InvokeFunction permission to allow Lambda function invocation, such as the following example.

        cat >policy-2.json <<EOF
      {
         "Version": "2012-10-17",
         "Statement": [
             {
                 "Effect": "Allow",
                 "Action": [
                     "lambda:ListFunctions",
                     "lambda:InvokeFunction",
                     "lambda:GetFunction",
                     "lambda:InvokeAsync"
                 ],
                 "Resource": "*"
             }
         ]
      }
      EOF
      
      aws iam create-policy --policy-name lambda-invoke-policy --policy-document file://policy-2.json
        
    2. Create an IAM role that specifies the ARN of the authentication account’s role that you created in step 1.2, such as the following example. This ensures that the authentication account’s role that you previously created can assume this Lambda account role to invoke functions.

        cat >role-2.json <<EOF
      {
          "Version": "2012-10-17",
          "Statement": [
              {
                  "Effect": "Allow",
                  "Principal": {
                      "AWS": "arn:aws:iam::${AUTH_ACCOUNT_ID}:role/lambda-auth-role"
                  },
                  "Action": "sts:AssumeRole",
                  "Condition": {}
              }
          ]
      }
      EOF
      
      aws iam create-role --role-name lambda-invoke-role --assume-role-policy-document file://role-2.json
        
    3. Attach the invocation IAM role to the invocation IAM policy.

        aws iam attach-role-policy --role-name lambda-invoke-role --policy-arn=arn:aws:iam::${LAMBDA_ACCOUNT_ID}:policy/lambda-invoke-policy
        
    4. Verify that the policy is attached to the role.

        aws iam list-attached-role-policies --role-name lambda-invoke-role
        

      Example output:

        {
          "AttachedPolicies": [
              {
                  "PolicyName": "lambda-invoke-policy",
                  "PolicyArn": "arn:aws:iam::111122223333:policy/lambda-invoke-policy"
              }
          ]
      }
        
    5. Choose an existing or create a new Lambda function that you want to route to. To create a simple echo Node.js function for testing, see Create a Lambda function for testing.

Deploy the Amazon EKS Pod Identity Webhook

Before you install Gloo Gateway, deploy the Amazon EKS Pod Identity Webhook, which allows pods’ service accounts to use AWS IAM roles. When you create the Gloo Gateway proxy in the next section, this webhook mutates the proxy’s service account so that it can assume your IAM role to invoke Lambda functions.

  1. In your EKS cluster, install cert-manager, which is a prerequisite for the webhook.

      wget https://github.com/cert-manager/cert-manager/releases/download/v1.12.4/cert-manager.yaml
    kubectl apply -f cert-manager.yaml
      
  2. Verify that all cert-manager pods are running.

      kubectl get pods -n cert-manager
      
  3. Deploy the Amazon EKS Pod Identity Webhook.

      kubectl apply -f https://raw.githubusercontent.com/solo-io/workshops/refs/heads/master/gloo-gateway/1-18/enterprise/lambda/data/steps/deploy-amazon-pod-identity-webhook/auth.yaml
    kubectl apply -f https://raw.githubusercontent.com/solo-io/workshops/refs/heads/master/gloo-gateway/1-18/enterprise/lambda/data/steps/deploy-amazon-pod-identity-webhook/deployment-base.yaml
    kubectl apply -f https://raw.githubusercontent.com/solo-io/workshops/refs/heads/master/gloo-gateway/1-18/enterprise/lambda/data/steps/deploy-amazon-pod-identity-webhook/mutatingwebhook.yaml
    kubectl apply -f https://raw.githubusercontent.com/solo-io/workshops/refs/heads/master/gloo-gateway/1-18/enterprise/lambda/data/steps/deploy-amazon-pod-identity-webhook/service.yaml
      
  4. Verify that the webhook deployment completes.

      kubectl rollout status deploy/pod-identity-webhook
      

Install Gloo Gateway

  1. Set your Gloo Gateway license key as an environment variable. If you do not have one, contact an account representative. If you want to use the capabilities of [agentgateway enterprise](../ai/about), you need an additional agentgateway enterprise license. ```sh export GLOO_GATEWAY_LICENSE_KEY= export AGENTGATEWAY_LICENSE_KEY= ```

  2. Deploy the Kubernetes Gateway API CRDs.

      kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.4.0/standard-install.yaml
      
  3. Deploy the Gloo Gateway CRDs by using Helm. The following command uses the latest stable release, 2.0.2. For active development, update the version to 2.0.0-main.

      helm upgrade -i gloo-gateway-crds oci://us-docker.pkg.dev/solo-public/gloo-gateway/charts/gloo-gateway-crds \
      --create-namespace \
      --namespace gloo-system \
      --version 2.0.2 
      
  4. Install Gloo Gateway by using Helm. Choose between the Envoy-based kgateway proxy or the AI-first agentgateway proxy. You can also enable both gateway proxy types. Note that you need a separate license for each gateway proxy type that you want to enable. For more information, see Gateway proxies.

  5. Make sure that the gloo-gateway control plane is running.

      kubectl get pods -n gloo-system
      

    Example output:

      NAME                            READY   STATUS    RESTARTS   AGE
    gloo-gateway-5495d98459-46dpk   1/1     Running   0          19s
      

Annotate the gateway proxy service account

  1. Create a GatewayParameters resource to specify the invocation role ARN in the eks.amazonaws.com/role-arn IRSA annotation for the gateway proxy service account.

      kubectl apply -f- <<EOF
    apiVersion: gateway.kgateway.dev/v1alpha1
    kind: GatewayParameters
    metadata:
      name: http-lambda
      namespace: gloo-system
    spec:
      kube:
        serviceAccount:
          extraAnnotations:
            eks.amazonaws.com/role-arn: arn:aws:iam::${LAMBDA_ACCOUNT_ID}:role/lambda-invoke-role
    EOF
      
  2. Update the http Gateway resource to add a reference to the http-lambda GatewayParameters.

      kubectl apply -f- <<EOF
    kind: Gateway
    apiVersion: gateway.networking.k8s.io/v1
    metadata:
      name: http
      namespace: gloo-system
      annotations:
    spec:
      gatewayClassName: gloo-gateway-v2
      infrastructure:
        parametersRef:
          name: http-lambda
          group: gateway.kgateway.dev
          kind: GatewayParameters        
      listeners:
      - protocol: HTTP
        port: 8080
        name: http
        allowedRoutes:
          namespaces:
            from: All
    EOF
      
  3. Check the status of the gateway to make sure that your configuration is accepted. Note that in the output, a NoConflicts status of False indicates that the gateway is accepted and does not conflict with other gateway configuration.

      kubectl get gateway http -n gloo-system -o yaml
      
  4. Verify that the http service account has the eks.amazonaws.com/role-arn: arn:aws:iam::${LAMBDA_ACCOUNT_ID}:role/lambda-invoke-role annotation.

      kubectl describe serviceaccount http -n gloo-system
      

Set up routing to your function

Create Backend and HTTPRoute resources to route requests to the Lambda function.

  1. Create a Backend resource that references the AWS region, the ID of the account that contains the IAM role for Lambda invocation, and the echo function that you created.

      kubectl apply -f - <<EOF
    apiVersion: gateway.kgateway.dev/v1alpha1
    kind: Backend
    metadata:
      name: lambda
      namespace: gloo-system
    spec:
      type: AWS
      aws:
        region: ${AWS_LAMBDA_REGION}
        accountId: "${LAMBDA_ACCOUNT_ID}"
        lambda:
          functionName: echo
    EOF
      
  2. Create an HTTPRoute resource that references the lambda Backend.

      kubectl apply -f - <<EOF
    apiVersion: gateway.networking.k8s.io/v1
    kind: HTTPRoute
    metadata:
      name: lambda
      namespace: gloo-system
    spec:
      parentRefs:
        - name: http
          namespace: gloo-system
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /echo
        backendRefs:
        - name: lambda
          namespace: gloo-system
          group: gateway.kgateway.dev
          kind: Backend
    EOF
      
  3. Get the external address of the gateway and save it in an environment variable.

  4. Confirm that Gloo Gateway correctly routes requests to Lambda by sending a curl request to the echo function. Note that the first request might take a few seconds to process, because the AWS Security Token Service (STS) credential request must be performed first. However, after the credentials are cached, subsequent requests are processed more quickly.

    Example response:

      {"statusCode":200,"body":"Response from AWS Lambda. Here's the request you just sent me: {\"key1\":\"value1\",\"key2\":\"value2\"}"}% 
      

Resource-based configuration

Use AWS resource-based configuration to configure routing to functions in different accounts. The resource-based policy can give other accounts the permission to invoke the function, without requiring the other account to assume a role.

Before you begin

  1. Follow the Get started guide to install Gloo Gateway.

  2. Follow the Sample app guide to create a gateway proxy with an HTTP listener and deploy the httpbin sample app.

  3. Get the external address of the gateway and save it in an environment variable.

AWS resources

For the AWS configuration, you create a user or role in the authentication account, and a Lambda function in the account that contains the Lambda functions. The Lambda function has a resource-based policy statement which allows the user or role in the authentication account to invoke it.

  1. In your authentication account, create the following resources.

    1. Create a user or role in your authentication account. Be sure to give the user or role the lambda:InvokeFunction permission, so that the role can be used to invoke the Lambda functions in the other account.
    2. Create an access key for the user or role, which is used to authenticate with AWS when invoking the Lambda functions.
    3. Create a Kubernetes secret that contains the access key and secret key.
        kubectl apply -n gloo-system -f - << EOF
      apiVersion: v1
      kind: Secret
      metadata:
        name: aws-creds
      stringData:
        accessKey: ${AWS_ACCESS_KEY_ID}
        secretKey: ${AWS_SECRET_ACCESS_KEY}
        sessionToken: ""
      type: Opaque
      EOF
        
  2. In your Lambda account, create the following resources.

    1. Choose an existing or create a new Lambda function that you want to route to. To create a simple echo Node.js function for testing, see Create a Lambda function for testing.
    2. Define a resource-based policy statement for the function, which allows the user in the authentication account to invoke it.
      1. In the AWS console, select the Lambda function.
      2. Click the Configuration tab.
      3. In the sidebar, click the Permissions tab.
      4. In the Resource-based policy statements section, click Add Permissions.
        • Select AWS account as the entity which invokes the function.
        • Specify the ARN of the user or role in the authentication account as the principal.
        • Select lambda:InvokeFunction as the action.

Set up routing to your function

Create Backend and HTTPRoute resources to route requests to the Lambda function.

  1. Create a Backend resource that references the AWS region, the ID of the account that contains the IAM role for Lambda invocation, and the echo function that you created.

      kubectl apply -f - <<EOF
    apiVersion: gateway.kgateway.dev/v1alpha1
    kind: Backend
    metadata:
      name: lambda
      namespace: gloo-system
    spec:
      type: AWS
      aws:
        region: ${AWS_LAMBDA_REGION}
        accountId: "${LAMBDA_ACCOUNT_ID}"
        lambda:
          functionName: echo
    EOF
      
  2. Create an HTTPRoute resource that references the lambda Backend.

      kubectl apply -f - <<EOF
    apiVersion: gateway.networking.k8s.io/v1
    kind: HTTPRoute
    metadata:
      name: lambda
      namespace: gloo-system
    spec:
      parentRefs:
        - name: http
          namespace: gloo-system
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /echo
        backendRefs:
        - name: lambda
          namespace: gloo-system
          group: gateway.kgateway.dev
          kind: Backend
    EOF
      
  3. Get the external address of the gateway and save it in an environment variable.

  4. Confirm that Gloo Gateway correctly routes requests to Lambda by sending a curl request to the echo function. Note that the first request might take a few seconds to process, because the AWS Security Token Service (STS) credential request must be performed first. However, after the credentials are cached, subsequent requests are processed more quickly.

    Example response:

      {"statusCode":200,"body":"Response from AWS Lambda. Here's the request you just sent me: {\"key1\":\"value1\",\"key2\":\"value2\"}"}% 
      

Cleanup

You can remove the resources that you created in this guide.

Resources for the echo function

  1. Delete the lambda HTTPRoute and lambda Backend.

      kubectl delete HTTPRoute lambda -n gloo-system
    kubectl delete Backend lambda -n gloo-system
      
  2. Use the AWS Lambda console to delete the echo test function.

Resource-based configuration only

If you no longer need to access Lambda functions from Gloo Gateway, delete the aws-creds secret.

  kubectl delete secret aws-creds -n gloo-system
  

IRSA role-chain configuration only

If you no longer need to access Lambda functions from Gloo Gateway:

  1. Delete the GatewayParameters resources.

      kubectl delete GatewayParameters http-lambda -n gloo-system
      
  2. Remove the reference to the http-lambda GatewayParameters from the http Gateway.

      kubectl apply -f- <<EOF
    kind: Gateway
    apiVersion: gateway.networking.k8s.io/v1
    metadata:
      name: http
      namespace: gloo-system
    spec:
      gatewayClassName: gloo-gateway-v2
      listeners:
      - protocol: HTTP
        port: 8080
        name: http
        allowedRoutes:
          namespaces:
            from: All
    EOF
      
  3. Delete the pod identity webhook.

      kubectl delete deploy pod-identity-webhook
      
  4. Remove cert-manager.

      kubectl delete -f cert-manager.yaml -n cert-manager
    kubectl delete ns cert-manager
      
  5. Delete the AWS IAM resources from the Lambda account.

      aws iam detach-role-policy --role-name lambda-invoke-role --policy-arn=arn:aws:iam::${LAMBDA_ACCOUNT_ID}:policy/lambda-invoke-policy
    aws iam delete-role --role-name lambda-invoke-role
    aws iam delete-policy --policy-arn=arn:aws:iam::${LAMBDA_ACCOUNT_ID}:policy/lambda-invoke-policy
      
  6. Delete the AWS IAM resources from the authentication account.

      aws iam detach-role-policy --role-name lambda-auth-role --policy-arn=arn:aws:iam::${AUTH_ACCOUNT_ID}:policy/lambda-auth-policy
    aws iam delete-role --role-name lambda-auth-role
    aws iam delete-policy --policy-arn=arn:aws:iam::${AUTH_ACCOUNT_ID}:policy/lambda-auth-policy