Skip to content

Commit

Permalink
Merge pull request #142 from olblak/master
Browse files Browse the repository at this point in the history
Add new dns record set to ci.j.io private ip
  • Loading branch information
olblak authored Feb 13, 2020
2 parents f86d04a + 629b5c9 commit 40a1de9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions plans/dns_jenkinsio.tf
Original file line number Diff line number Diff line change
Expand Up @@ -215,3 +215,11 @@ resource "azurerm_dns_a_record" "certci" {
ttl = 3600
records = ["${azurerm_network_interface.certci_private.private_ip_address}"]
}

resource "azurerm_dns_a_record" "ciprivate" {
name = "ci.private.jenkins.io"
zone_name = "${azurerm_dns_zone.jenkinsio.name}"
resource_group_name = "${azurerm_resource_group.dns_jenkinsio.name}"
ttl = 3600
records = ["${azurerm_network_interface.ci_public.private_ip_address}"]
}

0 comments on commit 40a1de9

Please sign in to comment.