mirror of
https://github.com/mr0xb/home-iac.git
synced 2026-08-27 19:34:57 -04:00
29 lines
545 B
HCL
29 lines
545 B
HCL
resource "unifi_static_dns" "home_assistant" {
|
|
key = "ha.local"
|
|
value = "192.168.1.206"
|
|
record_type = "A"
|
|
enabled = true
|
|
}
|
|
|
|
resource "unifi_static_dns" "debmini" {
|
|
key = "debmini.local"
|
|
value = "192.168.1.206"
|
|
record_type = "A"
|
|
enabled = true
|
|
}
|
|
|
|
resource "unifi_static_dns" "pihole" {
|
|
key = "pihole.local"
|
|
value = "192.168.1.207"
|
|
record_type = "A"
|
|
enabled = true
|
|
}
|
|
|
|
resource "unifi_static_dns" "imagevault" {
|
|
key = "imagevault.local"
|
|
value = "192.168.1.208"
|
|
record_type = "A"
|
|
enabled = true
|
|
}
|
|
|
|
|