hashicorp / terraform-aws-vault-enterprise-hvd

A Terraform module for provisioning and installing Vault Enterprise on AWS EC2 as described in HashiCorp Validated Designs
Mozilla Public License 2.0
1 stars 5 forks source link

enh: fix local placement #6

Open kalenarndt opened 2 months ago

kalenarndt commented 2 months ago

You have locals outside of your locals.tf which is a common issue when splitting terraform into multiple files.

https://github.com/hashicorp/terraform-aws-vault-enterprise-hvd/blob/936c1617c480253c53068dbe121967047c52c5b6/compute.tf#L4-L40

Suggest:

Consolidate your locals into the same file across the module set.

ml4 commented 2 months ago

Thanks for raising @kalenarndt.