Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
ebeaty-cisco committed Jan 31, 2025
1 parent 7745125 commit 171ce50
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions modules/aws/node/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ locals {
module "node_props" {
source = "../node-props"

count = local.node_props_required ? 1 : 0

instance_type = var.instance_type
use_case = "maximal"
}
Expand Down Expand Up @@ -72,7 +70,7 @@ locals {
var.isolated_cores != null ?
null :
try(
coalesce(var.xrd_vr_cp_num_cpus, local.node_props_required ? module.node_props.cp_num_cpus, null),
coalesce(var.xrd_vr_cp_num_cpus, local.node_props_required ? module.node_props.cp_num_cpus : null),
null,
)
)
Expand Down

0 comments on commit 171ce50

Please sign in to comment.