Skip to content

Commit

Permalink
Use an external DHCP and DNS server (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bischoff committed Mar 31, 2024
1 parent 8cba02f commit 425a4eb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,7 @@ module "sles12sp5-terminal" {
product = "X9DR3-F"
}
private_ip = 5
private_name = "sles12sp5_terminal"
private_name = "sle12sp5terminal"
}

module "sles15sp4-buildhost" {
Expand Down Expand Up @@ -1299,7 +1299,7 @@ module "sles15sp4-terminal" {
product = "ProLiant DL360 Gen9"
}
private_ip = 6
private_name = "sles15sp4_terminal"
private_name = "sle15sp4terminal"
}

module "dhcp-dns" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1543,8 +1543,8 @@ module "sles12sp5-terminal" {
manufacturer = "Supermicro"
product = "X9DR3-F"
}
private_ip = "1"
private_name = " "
private_ip = 5
private_name = "sle12sp5terminal"
}

module "sles15sp4-buildhost" {
Expand Down Expand Up @@ -1586,8 +1586,16 @@ module "sles15sp4-terminal" {
manufacturer = "HP"
product = "ProLiant DL360 Gen9"
}
private_ip = "1"
private_name = " "
private_ip = 6
private_name = "sle15sp4terminal"
}

module "dhcp-dns" {
source = "./modules/dhcp_dns"
base_configuration = module.base_core.configuration
name = "dhcp-dns"
image = "opensuse155o"
private_hosts = [ module.proxy_containerized.configuration, module.sles12sp5-terminal.configuration, module.sles15sp4-terminal.configuration ]
}

module "monitoring-server" {
Expand Down

0 comments on commit 425a4eb

Please sign in to comment.