I'm creating an aws.Route53.Record for a email ownership validation and trying to insert an
@
for the host name, but providing
@
as the string to the
name:
RecordArg value is not adequate, since the actual record that gets created appends the FQDN to it, e.g.
@.<http://domain.com|domain.com>
instead of just
@
.
const ownershipValidationDNSRecord = new aws.route53.Record("ownershipDNSRecord", {
name: '@',
records: ['provided validation string from email provider'],
zoneId: zone.zoneId,
type: aws.route53.RecordType.TXT,
ttl: 3600,
});
the above code creates the following record (screenshot)
@.<http://domain.com|domain.com> TXT Simple - No "value" 3600 - ...
Is there any way to suppress this postfix on the hostname?