Skip to content

Commit a609f95

Browse files
committed
Add new DNS A record for 'kali' in bind9 configuration
1 parent abf95d3 commit a609f95

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/docker/containers/bind9/dns.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ resource "dns_a_record_set" "tfk-01" {
66
]
77
ttl = 30
88
}
9+
resource "dns_a_record_set" "kali" {
10+
zone = "home.youngsecurity.net."
11+
name = "kali"
12+
addresses = [
13+
"10.0.255.150"
14+
]
15+
ttl = 30
16+
}
917
resource "dns_a_record_set" "metasploit" {
1018
zone = "home.youngsecurity.net."
1119
name = "metasploit"

src/docker/containers/bind9/main.plan

67 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)