From aa1072f8f50d01e14a225608ea59ebaa86ec92b6 Mon Sep 17 00:00:00 2001 From: soji-kainos-nhs-temp Date: Thu, 19 Mar 2026 11:55:34 +0000 Subject: [PATCH] NPT-959 Skip Route53 Checkov CKV2_AWS_38 and 39 issue --- infrastructure/stacks/account_wide/route53.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/infrastructure/stacks/account_wide/route53.tf b/infrastructure/stacks/account_wide/route53.tf index d67435f4..66330dff 100644 --- a/infrastructure/stacks/account_wide/route53.tf +++ b/infrastructure/stacks/account_wide/route53.tf @@ -1,11 +1,15 @@ # Create root zone hosted in mgmt account resource "aws_route53_zone" "root_zone" { + # checkov:skip=CKV2_AWS_38: TODO NPT-1102 + # checkov:skip=CKV2_AWS_39: TODO NPT-1102 count = var.environment == "mgmt" ? 1 : 0 name = var.root_domain_name } # Create child zone hosted in each other accounts resource "aws_route53_zone" "environment_zone" { + # checkov:skip=CKV2_AWS_38: TODO NPT-1102 + # checkov:skip=CKV2_AWS_39: TODO NPT-1102 count = var.environment == "mgmt" ? 0 : 1 name = local.env_domain_name }