From 4047bfed39cc2a44eb00cb3355448a653fb476a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksa=20Siri=C5=A1ki?= <31509435+aleksasiriski@users.noreply.github.com> Date: Wed, 4 Dec 2024 11:12:05 +0100 Subject: [PATCH] feat: status page and bump front & agent --- live/prod/agent/terragrunt.hcl | 2 +- live/prod/dns/terragrunt.hcl | 13 +++++++++++++ live/prod/frontend/terragrunt.hcl | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/live/prod/agent/terragrunt.hcl b/live/prod/agent/terragrunt.hcl index fdcb3bf..6e7b80d 100644 --- a/live/prod/agent/terragrunt.hcl +++ b/live/prod/agent/terragrunt.hcl @@ -128,7 +128,7 @@ EOF inputs = { aws_profile = local.aws_profile hosted_zone_id = dependency.dns.outputs.hosted_zone_id - release_tag = "v0.32.2" + release_tag = "v0.32.3" cloudfront_name = "hearchco-api-cloudfront-${local.environment}" cloudfront_domain_name = local.domain_name_cloudfront diff --git a/live/prod/dns/terragrunt.hcl b/live/prod/dns/terragrunt.hcl index 64c5777..5313253 100644 --- a/live/prod/dns/terragrunt.hcl +++ b/live/prod/dns/terragrunt.hcl @@ -51,6 +51,19 @@ locals { type = "TXT", ttl = 60, records = ["390ffbc03eb0af048b8fbd64c099da"] + }, + // Updown + { + name = "status", + type = "CNAME", + ttl = 86400, + records = ["page.updown.io"] + }, + { + name = "_updown.status", + type = "TXT", + ttl = 60, + records = ["updown-page=p/az8oo"] } ] } diff --git a/live/prod/frontend/terragrunt.hcl b/live/prod/frontend/terragrunt.hcl index 654bb9b..797e5f0 100644 --- a/live/prod/frontend/terragrunt.hcl +++ b/live/prod/frontend/terragrunt.hcl @@ -101,7 +101,7 @@ EOF inputs = { aws_profile = local.aws_profile hosted_zone_id = dependency.dns.outputs.hosted_zone_id - release_tag = "v0.21.1" + release_tag = "v0.22.0" cloudfront_name = "hearchco-ssr-cloudfront-${local.environment}" cloudfront_domain_name = local.domain_name_cloudfront