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 }