AWSTypeScriptLambdaRoute 53 | 7 Min Read

Invoking Lambda Functions Via DNS Requests With a Route 53 Hosted Zone Using the AWS CDK

There are many ways you can invoke an AWS Lambda function but in this post, we're going to look at how we can invoke one with a DNS request to a Route 53 hosted zone!

There are many ways you can invoke lambda functions but one of the more out-there methods I’ve seen is triggering a lambda function by sending a request to a URL. And, in this post that’s exactly what I’m going to show you how to set up and deploy in AWS.

But, first, you may be asking why would you need to do such a thing. Truth be told in most cases, you probably won’t need anything like this but in some niche circumstances, it can prove helpful.

For example, the other day I was asked to spin up a new Minecraft server for some people to play on. Now, sure I could’ve just rented a server from a company but that’s no fun so instead I built it on AWS ECS using a Fargate Spot Instance but that’s not important for this post. What is important is how the ECS instance hosting the server is started by a lambda function that is invoked by users in Minecraft pinging the server’s domain name to connect to it. 🤯

So, yes while this is a niche setup and not something you’ll do every day, it can be helpful. Anyway, for this tutorial, we’ll be using a couple of AWS services, obviously Lambda but we’ll also be using Route 53 to host our domain and CloudWatch to handle the invoking of our Lambdas.

One final thing to note before we jump into the tutorial portion of this post is that you’ll need to deploy your CDK stack to the `us-east-1` region. This is because Route 53 is a global service that is actually stored in that region so we’ll also need our CloudWatch logs and Lambda functions located there as well.

With that all covered let’s jump into the actual tutorial!

Configuring Our CDK Stack

The first thing we need to do is to configure our CDK stack to deploy to the `us-east-1` region as explained above. So, unless that if your default region, you’ll need to add the below code to where your stack is defined inside the `bin` directory.

./bin/*.ts
1new Route53DnsTriggerLambdaStack(app, "Route53DnsTriggerLambdaStack", {
2 // This code 👇
3 env: {
4 region: "us-east-1",
5 account: process.env.CDK_DEFAULT_ACCOUNT,
6 },
7});
ts

Creating Our Lambda Function

With that small piece of configuration covered, we can now get started with provisioning resources. So, the first thing we want to create is our Lambda function which we can do by creating a new file at the path `./resources/test-lambda.ts` and adding the below code to it.

./resources/test-lambda.ts
1export const handler = () => {
2 // eslint-disable-next-line no-console
3 console.log("hello world");
4};
ts

This is just a small example lambda that we can trigger and see the logs for in CloudWatch to make sure everything is working as intended.

Then head over to where your CDK stack resources are defined in your `lib` directory and add in the below code to define your Lambda function in the stack.

./lib/*-stack.ts
1const testLambda = new NodejsFunction(this, "TestLambda", {
2 runtime: Runtime.NODEJS_16_X,
3 handler: "handler",
4 entry: `./resources/test-lambda.ts`,
5});
ts

And, with that, we’ve finished defining our Lambda function so let’s move on to the interesting part of the post, configuring our domain to trigger it!

Configuring Our Domain Logging

The first thing we need to do when configuring our logs for our domain requests to populate is to create the log group in CloudWatch. To do this, add the below code to the same file in your `lib` directory.

./lib/*-stack.ts
1// Domain we plan on monitoring the logs for and want to trigger the lambda function for
2const domain = "";
3
4// Defining the log group that will record the requests to the domain
5const logGroup = new LogGroup(this, "LogGroup", {
6 logGroupName: `/aws/route53/${domain}`,
7 retention: RetentionDays.THREE_DAYS,
8 removalPolicy: RemovalPolicy.DESTROY,
9});
ts

NOTE: Make sure you add the domain name that you want to use to trigger your Lambda function into the code.

The next thing we need to do is allow Route 53 to write into that log group by adding in the below code.

./lib/*-stack.ts
1// Grant permissions to Route53 to write to the log group
2logGroup.grantWrite(new ServicePrincipal("route53.amazonaws.com"));
ts

This then finishes off the initial configuration of our log group in CloudWatch and allows Route 53 to write into that log group. Next, let’s move on to configuring our hosted zone in Route 53 and getting the new name servers we need to point our domain to.

Creating our Hosted Zone

To create the hosted zone for our domain in Route 53 use the below code to define a new hosted zone for the domain as well as connect the log group to it that we just defined.

./lib/*-stack.ts
1// Define the Route53 hosted zone for our domain
2const domainHostedZone = new HostedZone(this, "DomainHostedZone", {
3 zoneName: domain,
4 queryLogsLogGroupArn: logGroup.logGroupArn,
5});
ts

While we’re working with the hosted zone, let’s also add a `CfnOutput` statement to log out the name servers of the hosted zone so that when we deploy our CDK stack we don’t need to use the dashboard to find them.

./lib/*-stack.ts
1// Output the hosted zone name servers so we can update the domain registrar with them
2const nameServers = domainHostedZone.hostedZoneNameServers || [];
3// We use the Fn.join and Fn.select to avoid the error "throw new Error('Found an encoded list token string in a scalar string context. Use \'Fn.select(0, list)\' (not \'list[0]\') to extract elements from token lists.');" when outputting the name servers with CfnOutput
4const joinedNameServers = Fn.join(", ", nameServers);
5
6new CfnOutput(this, "HostedZoneNameServers", {
7 value: Fn.select(0, joinedNameServers.split(",")) || "",
8 description: "The name servers for the domain's hosted zone",
9});
ts

With that configured, we’ve finished off our Route 53 configuration so now any requests that come into that domain are automatically logged to CloudWatch. So, all we need to do now is link up CloudWatch and our Lambda function, and then we’re ready to deploy!

Linking It All Up

To link our CloudWatch Log Group with our Lambda function, we’re going to use a subscription filter that will check our log group for a term, and if a match is found, it invokes the given Lambda. In our case, the Lambda is the one we defined earlier and the term we’ll be looking for is our domain name.

./lib/*-stack.ts
1// Add a subscription filter to check the logs for the domain and trigger the lambda function if a request is made to it
2logGroup.addSubscriptionFilter("SubscriptionFilter", {
3 destination: new LambdaDestination(testLambda),
4 filterPattern: FilterPattern.anyTerm(domain),
5});
ts

With the subscription filter setup, we’ve completed our CDK stack and we’re ready to deploy so let’s do that.

Deploying and Testing

Before deploying make sure you have `esbuild` installed which you can do with `npm i esbuild`, this is because we’re using the `NodeJsFunction` construct and without `esbuild` our deployment will fail on this construct.

With that dependency taken care of, run `cdk deploy` in your terminal and accept any prompts you’re given. After your deployment has finished, take note of the name servers printed out for your new Route 53 hosted zone. Then head over to the service or platform where your domain is configured and update your name servers to be the ones AWS has given you.

Once your name servers have updated (this can take up to 24 hours to propagate but is normally quicker), you’ll be able to see all of the requests to your domain name in your CloudWatch log group. You should also see that the Lambda function we defined also get’s triggered each time a request is received, pretty cool! 🔥

Closing Thoughts

And, with our stack now deployed and everything working as expected we’ve reached the end of this tutorial. In this post, we’ve learned how to invoke Lambda functions by sending requests to a Route 53 hosted zone by using CloudWatch and subscription filters. If you’d like to see the full example code for this project, head over to the GitHub repository here.

I hope you found this post helpful until next time.

Thank you for reading.


P.S. If you don’t plan on keeping this stack, remember to run `cdk destroy` to remove the provisioned resources so you don’t get any unexpected bills!



Content

Latest Blog Posts

Below is my latest blog post and a link to all of my posts.

View All Posts

Content

Latest Video

Here is my YouTube Channel and latest video for your enjoyment.

View All Videos
AWS Bedrock Text and Image Generation Tutorial (AWS SDK)

AWS Bedrock Text and Image Generation Tutorial (AWS SDK)

Contact

Join My Newsletter

Subscribe to my weekly newsletter by filling in the form.

Get my latest content every week and 0 spam!