v0.5.0
Upgrade notes:
- node_files argument added: Terraform plan was failing when sensitive files are used for node uploads. This was happening due to node usage in the for_each attribute. Terraform plan fails if sensitive data is used for either keys or values for
for_each
property (see issue#16).
For existing code change as follows:To new codenodes = [{ node_ip = "172.31.140.18" node_id = "00" node_subnet_id = data.aws_subnet.subnet1.id node_files_toupload = [] }]
nodes = [{ node_ip = "172.31.140.18" node_id = "00" node_subnet_id = data.aws_subnet.subnet1.id }] node_files = [{ node_id = "00" node_files_toupload = [] }]
Breaking Changes:
- added node_files argument: Terraform plan was failing when sensitive files are used for node uploads. This was happening due to node usage in the for_each attribute. Terraform plan fails if sensitive data is used for either keys or values for
for_each
property (see issue#16) by @ganesh-arkalgud in #17
Full Changelog: v0.4.0...v0.5.0