Configure cross-account Lambda access
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.
This method requires you to enable IAM settings in your EKS cluster, such as the AWS Pod Identity Webhook, before you deploy Gloo Gateway components that are created during the installation, such as the Gateway CRD and the gateway proxy service account. You might use these steps with a fresh EKS test cluster to try out IRSA role-chained configuration with Gloo Gateway.
Save AWS account details
Save the ID of the AWS account that you want to use for authentication (the “authentication account”).
export AUTH_ACCOUNT_ID=<auth_account_id>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>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>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.
- If an OIDC provider in the format
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.
In your authentication account, create the following resources.
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.jsonCreate 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
httpin thegloo-systemnamespace is specified, because in later steps you create an HTTP gateway namedhttp.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.jsonAttach 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-policyVerify that the policy is attached to the role.
aws iam list-attached-role-policies --role-name lambda-auth-roleExample output:
{ "AttachedPolicies": [ { "PolicyName": "lambda-auth-policy", "PolicyArn": "arn:aws:iam::111122223333:policy/lambda-auth-policy" } ] }
In your Lambda account, create the following resources.
Create an IAM policy that contains at least the
lambda:InvokeFunctionpermission 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.jsonCreate 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.jsonAttach 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-policyVerify that the policy is attached to the role.
aws iam list-attached-role-policies --role-name lambda-invoke-roleExample output:
{ "AttachedPolicies": [ { "PolicyName": "lambda-invoke-policy", "PolicyArn": "arn:aws:iam::111122223333:policy/lambda-invoke-policy" } ] }Choose an existing or create a new Lambda function that you want to route to. To create a simple
echoNode.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.
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.yamlVerify that all cert-manager pods are running.
kubectl get pods -n cert-managerDeploy 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.yamlVerify that the webhook deployment completes.
kubectl rollout status deploy/pod-identity-webhook
Install Gloo Gateway
Be sure that you deployed the Amazon EKS Pod Identity Webhook to your cluster first before you continue to install Gloo Gateway.
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= ``` Deploy the Kubernetes Gateway API CRDs.
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.4.0/standard-install.yamlDeploy 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.1.0-main2.1.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.2Install 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.
Make sure that the
gloo-gatewaycontrol plane is running.kubectl get pods -n gloo-systemExample output:
NAME READY STATUS RESTARTS AGE gloo-gateway-5495d98459-46dpk 1/1 Running 0 19s
Annotate the gateway proxy service account
Create a GatewayParameters resource to specify the invocation role ARN in the
eks.amazonaws.com/role-arnIRSA 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 EOFUpdate the
httpGateway resource to add a reference to thehttp-lambdaGatewayParameters.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 EOFCheck the status of the gateway to make sure that your configuration is accepted. Note that in the output, a
NoConflictsstatus ofFalseindicates that the gateway is accepted and does not conflict with other gateway configuration.kubectl get gateway http -n gloo-system -o yamlVerify that the
httpservice account has theeks.amazonaws.com/role-arn: arn:aws:iam::${LAMBDA_ACCOUNT_ID}:role/lambda-invoke-roleannotation.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.
Create a Backend resource that references the AWS region, the ID of the account that contains the IAM role for Lambda invocation, and the
echofunction 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 EOFCreate an HTTPRoute resource that references the
lambdaBackend.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 EOFGet the external address of the gateway and save it in an environment variable.
Confirm that Gloo Gateway correctly routes requests to Lambda by sending a curl request to the
echofunction. 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
Follow the Get started guide to install Gloo Gateway.
Follow the Sample app guide to create a gateway proxy with an HTTP listener and deploy the httpbin sample app.
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.
In your authentication account, create the following resources.
- Create a user or role in your authentication account. Be sure to give the user or role the
lambda:InvokeFunctionpermission, so that the role can be used to invoke the Lambda functions in the other account. - Create an access key for the user or role, which is used to authenticate with AWS when invoking the Lambda functions.
- 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
- Create a user or role in your authentication account. Be sure to give the user or role the
In your Lambda account, create the following resources.
- Choose an existing or create a new Lambda function that you want to route to. To create a simple
echoNode.js function for testing, see Create a Lambda function for testing. - Define a resource-based policy statement for the function, which allows the user in the authentication account to invoke it.
- In the AWS console, select the Lambda function.
- Click the Configuration tab.
- In the sidebar, click the Permissions tab.
- 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:InvokeFunctionas the action.
- Choose an existing or create a new Lambda function that you want to route to. To create a simple
Set up routing to your function
Create Backend and HTTPRoute resources to route requests to the Lambda function.
Create a Backend resource that references the AWS region, the ID of the account that contains the IAM role for Lambda invocation, and the
echofunction 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 EOFCreate an HTTPRoute resource that references the
lambdaBackend.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 EOFGet the external address of the gateway and save it in an environment variable.
Confirm that Gloo Gateway correctly routes requests to Lambda by sending a curl request to the
echofunction. 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
Delete the
lambdaHTTPRoute andlambdaBackend.kubectl delete HTTPRoute lambda -n gloo-system kubectl delete Backend lambda -n gloo-systemUse the AWS Lambda console to delete the
echotest 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:
Delete the GatewayParameters resources.
kubectl delete GatewayParameters http-lambda -n gloo-systemRemove the reference to the
http-lambdaGatewayParameters from thehttpGateway.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 EOFDelete the pod identity webhook.
kubectl delete deploy pod-identity-webhookRemove cert-manager.
kubectl delete -f cert-manager.yaml -n cert-manager kubectl delete ns cert-managerDelete 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-policyDelete 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