CDK Constructs for AWS Route53
Project description
AWS Route53 Construct Library
To add a public hosted zone:
import route53 = require('@aws-cdk/aws-route53');
new route53.PublicHostedZone(this, 'HostedZone', {
zoneName: 'fully.qualified.domain.com'
});
To add a private hosted zone, use PrivateHostedZone
. Note that
enableDnsHostnames
and enableDnsSupport
must have been enabled for the
VPC you're configuring for private hosted zones.
import ec2 = require('@aws-cdk/aws-ec2');
import route53 = require('@aws-cdk/aws-route53');
const vpc = new ec2.VpcNetwork(this, 'VPC');
const zone = new route53.PrivateHostedZone(this, 'HostedZone', {
zoneName: 'fully.qualified.domain.com',
vpc // At least one VPC has to be added to a Private Hosted Zone.
});
Additional VPCs can be added with zone.addVPC()
.
Adding Records
To add a TXT record to your zone:
import route53 = require('@aws-cdk/aws-route53');
new route53.TxtRecord(zone, 'TXTRecord', {
recordName: '_foo', // If the name ends with a ".", it will be used as-is;
// if it ends with a "." followed by the zone name, a trailing "." will be added automatically;
// otherwise, a ".", the zone name, and a trailing "." will be added automatically.
recordValue: 'Bar!', // Will be quoted for you, and " will be escaped automatically.
ttl: 90, // Optional - default is 1800
});
Adding records to existing hosted zones
If you know the ID and Name of a Hosted Zone, you can import it directly:
const zone = HostedZone.import(this, 'MyZone', {
zoneName: 'example.com',
hostedZoneId: 'ZOJJZC49E0EPZ',
});
If you don't know the ID of a Hosted Zone, you can use the HostedZoneProvider
to discover and import it:
const zone = new HostedZoneProvider(this, {
domainName: 'example.com'
}).findAndImport(this, 'MyZone');
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aws-cdk.aws-route53-0.31.0.tar.gz
(78.8 kB
view hashes)
Built Distribution
Close
Hashes for aws-cdk.aws-route53-0.31.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | e35f150d19c6241c7659785e08d267912500647cf3effd0909295f536c8e39c7 |
|
MD5 | 8a03e48d108f1053d9d7fbd30581e7e1 |
|
BLAKE2b-256 | cf8dc26126f498932ba059ce099f96f64673e42a10a3d6f6ee44722c03e0083a |
Close
Hashes for aws_cdk.aws_route53-0.31.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9a803f5ec8405df98404aed2c8f6fe13461453758c101e6eb392d7b7f9ee4b8 |
|
MD5 | 6a6522f5ebedf2ab51f0d5a61f157fb3 |
|
BLAKE2b-256 | 546b05fdbd3ef221d028de3de9d7fbb9d762629029888896688e858503ddb2fa |