@dvargas92495/aws-clerk
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

aws-clerk

Creates the AWS resources necessary to integrate your AWS website with Clerk.

Features

  • Adds DNS records to AWS to integrate with Clerk

Usage

data "aws_route53_zone" "website" {
  name = "example.com."
}

provider "aws" {
  region = "us-east-1"
}

module "aws_clerk" {
  source  = "dvargas92495/clerk/aws"
  zone_id = data.aws_route53_zone.website.zone_id
  clerk_id = "From /dns page"
}

Inputs

  • zone_id - The AWS Route53 Hosted Zone to add the Clerk DNS configuration to.
  • clerk_id - This value could be found on your Clerk DNS page and is the 12-digit randomized alpha-numeric path in the mail and clk records.

Output

There are no exposed outputs

Package Sidebar

Install

npm i @dvargas92495/aws-clerk

Weekly Downloads

22

Version

0.1.0

License

MIT

Unpacked Size

38.6 kB

Total Files

5

Last publish

Collaborators

  • dvargas92495