Skip to content

Commit

Permalink
OCTOPUS-555: harden the create_new vpc ssh key
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Bastide <[email protected]>
  • Loading branch information
prb112 committed Nov 15, 2023
1 parent 725d104 commit 6c300cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/1_vpc_prepare/keys/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
################################################################

output "vpc_check_key" {
value = var.vpc_create || var.create_custom_subnet ? module.create_new[0].vpc_check_key : module.check.check_key
value = var.vpc_create || var.create_custom_subnet ? module.create_new.vpc_check_key : module.check.check_key
}

output "vpc_key_id" {
value = var.vpc_create || var.create_custom_subnet ? module.create_new[0].vpc_key_id : module.check.keys
value = var.vpc_create || var.create_custom_subnet ? module.create_new.vpc_key_id : module.check.keys
}

0 comments on commit 6c300cd

Please sign in to comment.