Skip to content

Commit

Permalink
Remove interpolation syntax (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhoherd authored Jan 12, 2021
1 parent 4ec4a9e commit f664b01
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 @@ -56,7 +56,7 @@ output "depended_on" {
}

output "windows_debug_box_password" {
value = var.enable_windows_box ? "${rsadecrypt(aws_instance.windows_debug_box[0].password_data, tls_private_key.ssh_key[0].private_key_pem)}" : "Not applicable - Windows box is not enabled."
value = var.enable_windows_box ? rsadecrypt(aws_instance.windows_debug_box[0].password_data, tls_private_key.ssh_key[0].private_key_pem) : "Not applicable - Windows box is not enabled."
}

output "windows_debug_box_hostname" {
Expand Down

0 comments on commit f664b01

Please sign in to comment.