Skip to content

Commit

Permalink
added dns for srv 8
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianLempa committed Apr 5, 2024
1 parent a014b10 commit 1448269
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions dns/dns-prod-1/terraform/server.tf
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,20 @@ resource "dns_a_record_set" "srv_prod_7_wildcard" {
ttl = 3600
}

resource "dns_a_record_set" "srv_prod_8" {
zone = "home.clcreative.de."
name = "srv-prod-8"
addresses = ["10.20.0.20"]
ttl = 3600
}

resource "dns_a_record_set" "srv_prod_8_wildcard" {
zone = "home.clcreative.de."
name = "*.srv-prod-8"
addresses = ["10.20.0.20"]
ttl = 3600
}

resource "dns_a_record_set" "srv_demo_1" {
zone = "home.clcreative.de."
name = "srv-demo-1"
Expand Down

0 comments on commit 1448269

Please sign in to comment.