Skip to content

Commit

Permalink
fix(tf): game server ssh key
Browse files Browse the repository at this point in the history
  • Loading branch information
dhenkel92 committed May 5, 2024
1 parent 01947c0 commit 50321ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infrastructure/terraform/02-game-server/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module "game_server" {
image = data.hcloud_image.latest_game_server_image.id
firewall_ids = [module.firewall.id]

ssh_keys = data.hcloud_ssh_keys.all_keys.*.id
ssh_keys = [for key in data.hcloud_ssh_keys.all_keys.ssh_keys : key.id]
tags = local.tags

network = {
Expand Down

0 comments on commit 50321ec

Please sign in to comment.