Skip to content

Commit

Permalink
[B2BP-1166] Validate ioapp.it ACM certificate and add AWS issuer reco…
Browse files Browse the repository at this point in the history
…rds (#1425)
  • Loading branch information
christian-calabrese authored Feb 14, 2025
1 parent 83c8315 commit aba8888
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/common/_modules/global/modules/dns/dns_ioweb_it.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,30 @@ resource "azurerm_dns_caa_record" "ioweb_it" {
value = "digicert.com"
}

record {
flags = 0
tag = "issue"
value = "amazon.com"
}

record {
flags = 0
tag = "issue"
value = "amazontrust.com"
}

record {
flags = 0
tag = "issue"
value = "awstrust.com"
}

record {
flags = 0
tag = "issue"
value = "amazonaws.com"
}

record {
flags = 0
tag = "iodef"
Expand Down Expand Up @@ -64,3 +88,11 @@ resource "azurerm_dns_cname_record" "zendesk" {
ttl = var.dns_default_ttl_sec
record = "hc-io.zendesk.com"
}

resource "azurerm_dns_cname_record" "aws_cert_validation_ioweb" {
name = "_1b96136662809f31f497b4fcd6b32a8d"
zone_name = azurerm_dns_zone.ioweb_it.name
resource_group_name = var.resource_groups.external
ttl = var.dns_default_ttl_sec
record = "_2de3fc7bfdb25e6a4e58c29dc8b4dba6.zfyfvmchrl.acm-validations.aws."
}

0 comments on commit aba8888

Please sign in to comment.