Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ import {
import { azureDnsDeleteTxtRecord, azureDnsInsertTxtRecord } from "./dns-providers/azure-dns";
import { cloudflareDeleteTxtRecord, cloudflareInsertTxtRecord } from "./dns-providers/cloudflare";
import { dnsMadeEasyDeleteTxtRecord, dnsMadeEasyInsertTxtRecord } from "./dns-providers/dns-made-easy";
import { route53DeleteTxtRecord, route53InsertTxtRecord } from "./dns-providers/route54";
import { route53DeleteTxtRecord, route53InsertTxtRecord } from "./dns-providers/route53";

const validateDnsResolver = (resolver: string): void => {
const appCfg = getConfig();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const route53InsertTxtRecord = async (
domain: string,
value: string
) => {
const config = await getAwsConnectionConfig(connection, AWSRegion.US_WEST_1); // REGION is irrelevant because Route53 is global
const config = await getAwsConnectionConfig(connection, AWSRegion.US_EAST_1); // Route53 is global; us-east-1 STS endpoint is always active
const route53Client = new Route53Client({
sha256: CustomAWSHasher,
useFipsEndpoint: crypto.isFipsModeEnabled(),
Expand Down Expand Up @@ -47,7 +47,7 @@ export const route53DeleteTxtRecord = async (
domain: string,
value: string
) => {
const config = await getAwsConnectionConfig(connection, AWSRegion.US_WEST_1); // REGION is irrelevant because Route53 is global
const config = await getAwsConnectionConfig(connection, AWSRegion.US_EAST_1); // Route53 is global; us-east-1 STS endpoint is always active
const route53Client = new Route53Client({
credentials: config.credentials,
region: config.region
Expand Down