resource "aws_acm_certificate" "cdn_sonymusicfans_com_cert" {
  domain_name = "cdn.sonymusicfans.com"
  validation_method = "DNS"

  tags = merge(
    local.common_tags,
    {
      project                  = "Infrastructure",
      service                  = "ACM",
      plat_env_project_service = "${local.aggregated_tag}_INFRA_ACM"
    }
  )

  lifecycle {
    create_before_destroy = true
  }
}
