Skip to content

Commit

Permalink
Add terminal and build host support
Browse files Browse the repository at this point in the history
  • Loading branch information
maximenoel8 committed Aug 14, 2024
1 parent 8990270 commit aa02d13
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1692,7 +1692,7 @@ module "sle15sp5s390_ssh_minion" {
// ssh_key_path = "./salt/controller/id_rsa.pub"
// }

module "sle12sp5-buildhost" {
module "sle12sp5_buildhost" {
providers = {
libvirt = libvirt.coruscant
}
Expand All @@ -1714,7 +1714,7 @@ module "sle12sp5-buildhost" {
ssh_key_path = "./salt/controller/id_rsa.pub"
}

module "sle12sp5-terminal" {
module "sle12sp5_terminal" {
providers = {
libvirt = libvirt.coruscant
}
Expand All @@ -1732,7 +1732,7 @@ module "sle12sp5-terminal" {
private_name = "sle12sp5terminal"
}

module "sle15sp4-buildhost" {
module "sle15sp4_buildhost" {
providers = {
libvirt = libvirt.coruscant
}
Expand All @@ -1754,7 +1754,7 @@ module "sle15sp4-buildhost" {
ssh_key_path = "./salt/controller/id_rsa.pub"
}

module "sle15sp4-terminal" {
module "sle15sp4_terminal" {
providers = {
libvirt = libvirt.coruscant
}
Expand Down Expand Up @@ -1911,11 +1911,11 @@ module "controller" {
// WORKAROUND until https://bugzilla.suse.com/show_bug.cgi?id=1208045 gets fixed
// slmicro60_sshminion_configuration = module.slmicro60_ssh_minion.configuration

sle12sp5_buildhost_configuration = module.sle12sp5-buildhost.configuration
sle15sp4_buildhost_configuration = module.sle15sp4-buildhost.configuration
sle12sp5_buildhost_configuration = module.sle12sp5_buildhost.configuration
sle15sp4_buildhost_configuration = module.sle15sp4_buildhost.configuration

sle12sp5_terminal_configuration = module.sle12sp5-terminal.configuration
sle15sp4_terminal_configuration = module.sle15sp4-terminal.configuration
sle12sp5_terminal_configuration = module.sle12sp5_terminal.configuration
sle15sp4_terminal_configuration = module.sle15sp4_terminal.configuration

monitoringserver_configuration = module.monitoring-server.configuration
}
Expand Down

0 comments on commit aa02d13

Please sign in to comment.