Skip to content

Commit

Permalink
Fix ssh keypair naming format
Browse files Browse the repository at this point in the history
Signed-off-by: Prajyot-Parab <prajyot.parab2@ibm.com>
  • Loading branch information
Prajyot-Parab committed Dec 1, 2023
1 parent 6dab537 commit 179be13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/1_vpc_prepare/keys/create_new/keys.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ locals {
resource "ibm_is_ssh_key" "vpc_support_ssh_key_cond_create" {
depends_on = [data.ibm_is_ssh_keys.keys]
count = !var.vpc_skip_ssh_key_create ? 1 : 0
name = "${var.vpc_name}-${var.name_prefix}-keypair"
name = "${var.name_prefix}-keypair"
public_key = local.public_key
resource_group = var.vpc_resource_group
}
Expand Down

0 comments on commit 179be13

Please sign in to comment.