Skip to content

Commit

Permalink
fix: skip sensitive secondary disk output
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Bastide <pbastide@us.ibm.com>
  • Loading branch information
prb112 committed Feb 3, 2025
1 parent d158129 commit a1fcc02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/6_post/post.tf
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ resource "null_resource" "cicd_etcd_add_secondary_disk" {

triggers = {
vpc_support_server_ip = "${var.nfs_server}"
private_key = file(var.private_key_file)
private_key = sensitive(file(var.private_key_file))
host = var.bastion_public_ip[0]
agent = var.ssh_agent
ansible_post_path = local.ansible_post_path
Expand Down

0 comments on commit a1fcc02

Please sign in to comment.