-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddsd.js
34 lines (34 loc) · 894 Bytes
/
addsd.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
var params = {
ChangeBatch: {
Changes: [
{
Action: "CREATE",
ResourceRecordSet: {
AliasTarget: {
DNSName: "d111111abcdef8.cloudfront.net ",
EvaluateTargetHealth: false,
HostedZoneId: "ZM7SVRK5KUCMX"
},
Name: "sub-domain-check.satnamsandhu.xyz",
Type: "A"
}
}
],
Comment: "SUB-DOMAIN added"
},
HostedZoneId: "ZM7SVRK5KUCMX"// Depends on the type of resource that you want to route traffic to
};
route53.changeResourceRecordSets(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
/*
data = {
ChangeInfo: {
Comment: "CloudFront distribution for example.com",
Id: "/change/C2682N5HXP0BZ4",
Status: "PENDING",
SubmittedAt: <Date Representation>
}
}
*/
});