Skip to content

Commit

Permalink
Migrate to new site
Browse files Browse the repository at this point in the history
  • Loading branch information
x86-39 committed Apr 29, 2023
1 parent 174f78c commit 2e29d5f
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions projects/dns/dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,6 @@ locals {
proxied = true
allow_overwrite = false
},
{
name = "newsite"
value = var.server_ip
type = "A"
ttl = 1
proxied = true
allow_overwrite = false
},
{
name = "mc"
value = var.server_ip
Expand Down Expand Up @@ -84,6 +76,22 @@ locals {
ttl = 1
proxied = true
allow_overwrite = false
},
{
name = var.root_domain
value = var.server_ip
type = "A"
ttl = 1
proxied = true
allow_overwrite = true
},
{
name = "www"
value = var.root_domain
type = "CNAME"
ttl = 1
proxied = true
allow_overwrite = true
}
]
}
Expand Down

0 comments on commit 2e29d5f

Please sign in to comment.