0.1.0 • Published 2 years ago

@dvargas92495/aws-clerk v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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