Skip to content

Commit

Permalink
Use ed_25519 private keys for DHCP-DNS setup
Browse files Browse the repository at this point in the history
  • Loading branch information
NamelessOne91 committed Mar 6, 2025
1 parent a8d6640 commit 518291c
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sumaform-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
# Provide a fake private SSH key
mkdir -p ~/.ssh
touch ~/.ssh/id_rsa
touch ~/.ssh/id_ed25519
for tf_file in ${{steps.tf_files.outputs.added_modified}}; do
echo "::notice::Validating '`basename $tf_file`'..."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1070,7 +1070,7 @@ module "dhcp_dns" {
hypervisor = {
host = "suma-06.mgr.suse.de"
user = "root"
private_key = file("~/.ssh/id_rsa")
private_key = file("~/.ssh/id_ed25519")
}
}

Expand Down
2 changes: 1 addition & 1 deletion terracumber_config/tf_files/PR-testing-template.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ module "cucumber_testsuite" {
hypervisor = {
host = var.ENVIRONMENT_CONFIGURATION[var.ENVIRONMENT].hypervisor
user = "root"
private_key = file("~/.ssh/id_rsa")
private_key = file("~/.ssh/id_ed25519")
}
}
server_containerized = {
Expand Down
2 changes: 1 addition & 1 deletion terracumber_config/tf_files/SUSEManager-5.0-NUE.tf
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ module "cucumber_testsuite" {
hypervisor = {
host = "suma-01.mgr.suse.de"
user = "root"
private_key = file("~/.ssh/id_rsa")
private_key = file("~/.ssh/id_ed25519")
}
}
kvm_host = {
Expand Down
2 changes: 1 addition & 1 deletion terracumber_config/tf_files/SUSEManager-5.0-PRV.tf
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ module "cucumber_testsuite" {
hypervisor = {
host = "selektah.mgr.prv.suse.net"
user = "root"
private_key = file("~/.ssh/id_rsa")
private_key = file("~/.ssh/id_ed25519")
}
}
kvm_host = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1136,7 +1136,7 @@ module "dhcp_dns" {
hypervisor = {
host = "suma-06.mgr.suse.de"
user = "root"
private_key = file("~/.ssh/id_rsa")
private_key = file("~/.ssh/id_ed25519")
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1460,7 +1460,7 @@ module "dhcp_dns" {
hypervisor = {
host = "terminus.mgr.prv.suse.net"
user = "root"
private_key = file("~/.ssh/id_rsa")
private_key = file("~/.ssh/id_ed25519")
}
}

Expand Down
2 changes: 1 addition & 1 deletion terracumber_config/tf_files/SUSEManager-Head-NUE.tf
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ module "cucumber_testsuite" {
hypervisor = {
host = "suma-01.mgr.suse.de"
user = "root"
private_key = file("~/.ssh/id_rsa")
private_key = file("~/.ssh/id_ed25519")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion terracumber_config/tf_files/SUSEManager-Test-Naica-NUE.tf
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ module "cucumber_testsuite" {
hypervisor = {
host = "cthulhu.mgr.suse.de"
user = "root"
private_key = file("~/.ssh/id_rsa")
private_key = file("~/.ssh/id_ed25519")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion terracumber_config/tf_files/SUSEManager-Test-Vega-NUE.tf
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ module "cucumber_testsuite" {
hypervisor = {
host = "cthulhu.mgr.suse.de"
user = "root"
private_key = file("~/.ssh/id_rsa")
private_key = file("~/.ssh/id_ed25519")
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ module "dhcp_dns" {
hypervisor = {
host = "suma-06.mgr.suse.de"
user = "root"
private_key = file("~/.ssh/id_rsa")
private_key = file("~/.ssh/id_ed25519")
}
}

Expand Down
2 changes: 1 addition & 1 deletion terracumber_config/tf_files/Uyuni-Master-NUE.tf
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ module "cucumber_testsuite" {
hypervisor = {
host = "suma-01.mgr.suse.de"
user = "root"
private_key = file("~/.ssh/id_rsa")
private_key = file("~/.ssh/id_ed25519")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion terracumber_config/tf_files/Uyuni-Master-podman.tf
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ module "cucumber_testsuite" {
hypervisor = {
host = "suma-01.mgr.suse.de"
user = "root"
private_key = file("~/.ssh/id_rsa")
private_key = file("~/.ssh/id_ed25519")
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ module "cucumber_testsuite" {
hypervisor = {
host = "screwdriver.mgr.prv.suse.net"
user = "root"
private_key = file("~/.ssh/id_rsa")
private_key = file("~/.ssh/id_ed25519")
}
}
}
Expand Down

0 comments on commit 518291c

Please sign in to comment.