From 91d498c60465c11f502d9d1be2e471008c42d101 Mon Sep 17 00:00:00 2001 From: Niklas van Schrick Date: Fri, 3 May 2024 22:50:06 +0200 Subject: [PATCH] Improve dns comment for pages verification records --- modules/gitlab/pages_domain/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gitlab/pages_domain/main.tf b/modules/gitlab/pages_domain/main.tf index f18d476..82f1478 100644 --- a/modules/gitlab/pages_domain/main.tf +++ b/modules/gitlab/pages_domain/main.tf @@ -52,5 +52,5 @@ resource "cloudflare_record" "gitlab_pages_verification" { type = "TXT" zone_id = var.cloudflare_zone_id value = gitlab_pages_domain.this.verification_code - comment = "Managed by Terraform" + comment = "Managed by Terraform | Pages verification for ${cloudflare_record.gitlab_pages.hostname}" }