Skip to content

Commit

Permalink
feat: add CNAME record for github-comment-ops webhook (#46)
Browse files Browse the repository at this point in the history
* feat: add CNAME record for github-comment-ops webhook

* fix record

* complete name and better comment
  • Loading branch information
lemeurherve authored Mar 9, 2023
1 parent c15022a commit da59814
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,12 @@ resource "azurerm_dns_cname_record" "target" {
ttl = 300
record = "public.publick8s.jenkins.io"
}

# CNAME record for github-comment-ops GitHub App
resource "azurerm_dns_cname_record" "webhook-github-comment-ops" {
name = "webhook-github-comment-ops"
zone_name = data.azurerm_dns_zone.jenkinsio.name
resource_group_name = data.azurerm_resource_group.proddns_jenkinsio.name
ttl = 300
record = "public.privatek8s.jenkins.io"
}

0 comments on commit da59814

Please sign in to comment.