Connects the platform to Amazon Route 53 to automate DNS record management. This is used by multi-tenant provisioning features to create and update DNS records programmatically.

Creating IAM Credentials
  1. Log in to the AWS IAM Console.
  2. Navigate to Users → Create user. Give the user a name (e.g. jadaptive-route53).
  3. Attach the AmazonRoute53FullAccess managed policy, or create a custom policy with at minimum:
    				{
      "Effect": "Allow",
      "Action": ["route53:ChangeResourceRecordSets","route53:ListHostedZones","route53:ListResourceRecordSets"],
      "Resource": "*"
    }
    			
  4. Go to Security credentials → Access keys → Create access key.
  5. Copy the Access Key ID and Secret Access Key and enter them below.
Settings
Enabled
Activates DNS Management
Access Key
The IAM user access key ID (e.g. AKIAIOSFODNN7EXAMPLE ).
Secret Key
The IAM user secret access key. Stored encrypted at rest.
Region
The AWS region for API calls (e.g. us-east-1 ). Route 53 is a global service but a region is required for the API endpoint.
Open Route 53 Console