Skip to content

Commit

Permalink
MULTIARCH-4516: add sensitive flags
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Bastide <[email protected]>
  • Loading branch information
prb112 committed May 3, 2024
1 parent 02be864 commit 04b6a77
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions modules/7_post/ibmcloud_lb/ibmcloud_lb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ resource "null_resource" "remove_lbs" {
timeout = "${var.connection_timeout}m"
name_prefix = "${var.name_prefix}"
private_key = sensitive(file(var.private_key_file))
host = var.bastion_public_ip
host = sensitive(var.bastion_public_ip)
agent = var.ssh_agent
ansible_post_path = local.ansible_post_path
ibmcloud_api_key = var.ibmcloud_api_key
ibmcloud_api_key = sensitive(var.ibmcloud_api_key)
vpc_region = var.vpc_region
resource_group_name = var.resource_group_name
vpc_name = var.vpc_name
resource_group_name = sensitive(var.resource_group_name)
vpc_name = sensitive(var.vpc_name)
}

connection {
Expand Down
2 changes: 1 addition & 1 deletion modules/7_post/post.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ resource "null_resource" "remove_workers" {
timeout = "${var.connection_timeout}m"
name_prefix = "${var.name_prefix}"
private_key = sensitive(file(var.private_key_file))
host = var.bastion_public_ip
host = sensitive(var.bastion_public_ip)
agent = var.ssh_agent
ansible_post_path = local.ansible_post_path
}
Expand Down

0 comments on commit 04b6a77

Please sign in to comment.