add telegram dns record

Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
This commit is contained in:
Andrey Platov 2021-11-29 18:13:04 +01:00
parent c26c92023e
commit 1c0211d057
No known key found for this signature in database
GPG Key ID: C8787EFEB4B64AF0

View File

@ -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"
]
})