rich-easter-89163
07/08/2019, 6:28 PMaws.route53.Record
but it creates a sufixed record (e.g my-api-<RANDOM_IDENTIFIER>.mysite.com) which is wrong, I created it according the docs (https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/aws/route53/#alias-record) and I don't see an option to create it without the sufix, my code is almost the same of the docs:
new aws.route53.Record('my-api', {
aliases: [
{
evaluateTargetHealth: false,
name: loadBalancer.dnsName,
zoneId: loadBalancer.zoneId,
},
],
type: aws.route53.RecordTypes.A,
zoneId: zone.zoneId,
});
Any clues on it?gentle-diamond-70147
07/08/2019, 6:29 PMbroad-dog-22463
07/08/2019, 6:30 PMnew aws.route53.Record('my-api', {
name: "my-api'",
aliases: [
{
evaluateTargetHealth: false,
name: loadBalancer.dnsName,
zoneId: loadBalancer.zoneId,
},
],
type: aws.route53.RecordTypes.A,
zoneId: zone.zoneId,
});
rich-easter-89163
07/08/2019, 6:30 PMbroad-dog-22463
07/08/2019, 6:31 PMrich-easter-89163
07/08/2019, 6:31 PMbroad-dog-22463
07/08/2019, 6:41 PM