Skip to content

Commit

Permalink
fix: default_ssh_key_prv output
Browse files Browse the repository at this point in the history
  • Loading branch information
kvendingoldo committed Mar 5, 2024
1 parent 015bcb9 commit 40020d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ output "default_ssh_key_pub" {

output "default_ssh_key_prv" {
description = "Default node groups that is attached to all node groups"
value = var.generate_default_ssh_key ? tls_private_key.default_ssh_key[0].public_key_openssh : null
value = var.generate_default_ssh_key ? tls_private_key.default_ssh_key[0].private_key_openssh : null
}

0 comments on commit 40020d8

Please sign in to comment.