Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cmd-ntrf committed Jul 18, 2024
1 parent 9e90c3e commit 965cde2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/configuration/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ output "inventory" {

output "ssh_key" {
value = {
public = try("${chomp(tls_private_key.ssh[0].public_key_openssh)} terraform@localhost", null)
private = try(tls_private_key.ssh[0].private_key_pem, null)
public = try("${chomp(tls_private_key.ssh.public_key_openssh)} terraform@localhost", null)
private = try(tls_private_key.ssh.private_key_pem, null)
}
}

Expand Down

0 comments on commit 965cde2

Please sign in to comment.