From 1c0211d057cc681e24f3f39d05accd75b978017a Mon Sep 17 00:00:00 2001 From: Andrey Platov Date: Mon, 29 Nov 2021 18:13:04 +0100 Subject: [PATCH] add telegram dns record Signed-off-by: Andrey Platov --- cloud/app/index.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/cloud/app/index.ts b/cloud/app/index.ts index 4531a38340..a41f2ee01f 100644 --- a/cloud/app/index.ts +++ b/cloud/app/index.ts @@ -316,3 +316,13 @@ new aws.route53.Record("accountRecord", { "107.191.38.121" ] }) + +new aws.route53.Record("telegramRecord", { + name: "telegram.hc.engineering", + zoneId: zoneId, + type: "A", + ttl: 300, + records: [ + "107.191.38.121" + ] +})