Skip to content

Commit

Permalink
Fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
maximenoel8 committed Nov 13, 2024
1 parent 1711862 commit 2f0a300
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 40 deletions.
26 changes: 13 additions & 13 deletions main.tf.aws-testsuite.example
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ module "cucumber_testsuite" {
controller = {}
server = {}
proxy = {}
suse-client = {
suse_client = {
image = "opensuse154"
name = "cli-opensuse154"
}
suse-minion = {
suse_minion = {
image = "opensuse154"
name = "min-opensuse154"
}
suse-sshminion = {
suse_sshminion = {
image = "opensuse154"
name = "minssh-opensuse154"
}
Expand Down Expand Up @@ -69,24 +69,24 @@ output "aws_proxy_private_name" {
value = module.cucumber_testsuite.configuration.proxy.hostname
}

output "aws_suse-minion_private_names" {
value = module.cucumber_testsuite.configuration.suse-minion.hostnames
output "aws_suse_minion_private_names" {
value = module.cucumber_testsuite.configuration.suse_minion.hostnames
}

output "aws_suse-client_private_names" {
value = module.cucumber_testsuite.configuration.suse-client.hostnames
output "aws_suse_client_private_names" {
value = module.cucumber_testsuite.configuration.suse_client.hostnames
}

output "aws_suse-sshminion_private_names" {
value = module.cucumber_testsuite.configuration.suse-sshminion.hostnames
output "aws_suse_sshminion_private_names" {
value = module.cucumber_testsuite.configuration.suse_sshminion.hostnames
}

output "aws_redhat-minion_private_names" {
value = module.cucumber_testsuite.configuration.redhat-minion.hostnames
output "aws_rhlike_minion_private_names" {
value = module.cucumber_testsuite.configuration.rhlike_minion.hostnames
}

output "aws_debian-minion_private_names" {
value = module.cucumber_testsuite.configuration.debian-minion.hostnames
output "aws_deblike_minion_private_names" {
value = module.cucumber_testsuite.configuration.deblike_minion.hostnames
}

output "aws_controller_private_name" {
Expand Down
20 changes: 10 additions & 10 deletions main.tf.libvirt-testsuite.example
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ module "cucumber_testsuite" {
# define which VMs should be created and adjust their settings.
# if you do not need a minion just comment it out.
# example:
# suse-minion = {
# suse_minion = {
# image = "sles15sp4o"
# name = "minion"
# provider_settings = {
Expand Down Expand Up @@ -104,38 +104,38 @@ module "cucumber_testsuite" {
proxy = {
name = "proxy"
}
suse-client = {
suse_client = {
image = "sles15sp4o"
}
suse-minion = {
suse_minion = {
image = "sles15sp4o"
name = "minion"
}
suse-sshminion = {
suse_sshminion = {
image = "sles15sp4o"
name = "sshminion"
}
redhat-minion = {
rhlike_minion = {
image = "centos7o"
name = "centos"
}
debian-minion = {
deblike_minion = {
image = "ubuntu2204o"
name = "ubuntu"
}
build-host = {
build_host = {
image = "sles15sp4o"
name = "build"
}
pxeboot-minion = {
pxeboot_minion = {
image = "sles15sp4o"
name = "pxeboot"
}
kvm-host = {
kvm_host = {
image = "opensuse156o"
name = "kvmhost"
}
monitoring-server = {
monitoring_server = {
image = "sles15sp4o"
name = "monitoring"
}
Expand Down
34 changes: 17 additions & 17 deletions main.tf.libvirt-testsuite.example.Manager-43
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ module "cucumber_testsuite" {
# define which VMs should be created and adjust their settings.
# if you do not need a minion just comment it out.
# example:
# suse-minion = {
# suse_minion = {
# image = "sles15sp4o"
# name = "minion"
# name = "suse-minion"
# provider_settings = {
# mac = "aa:bb:cc:dd:ee:ff"
# memory = 1024
Expand All @@ -92,36 +92,36 @@ module "cucumber_testsuite" {
proxy = {
name = "proxy"
}
suse-client = {
suse_client = {
image = "sles15sp4o"
}
suse-minion = {
suse_minion = {
image = "sles15sp4o"
name = "minion"
name = "suse-minion"
}
suse-sshminion = {
suse_sshminion = {
image = "sles15sp4o"
name = "sshminion"
name = "suse-sshminion"
}
redhat-minion = {
rhlike_minion = {
image = "rocky9o"
name = "centos"
name = "rhlike-minion"
}
debian-minion = {
deblike_minion = {
image = "ubuntu2204o"
name = "ubuntu"
name = "deblike-minion"
}
build-host = {
build_host = {
image = "sles15sp4o"
name = "build"
name = "build-host"
}
pxeboot-minion = {
pxeboot_minion = {
image = "sles15sp4o"
name = "pxeboot"
name = "pxeboot-minion"
}
kvm-host = {
kvm_host = {
image = "opensuse156o"
name = "kvmhost"
name = "kvm-host"
}
monitoring-server = {
image = "sles15sp4o"
Expand Down

0 comments on commit 2f0a300

Please sign in to comment.