packer-plugin-amazon
packer-plugin-amazon copied to clipboard
temporary_security_group_source_cidrs passing Variable issue
Having three different outcomes which would be expected to drive the same outcome:
- Hardcoding temporary_security_group_source_cidrs
- Using a variable-- packer validate .
- Using a variable-- packer build
When hard coding the CIDR, this works.
However, one would want to tie this to an environmental variable (type string). When doing this, you would validate this: packer build . This passes.
However, on the same file, `packer build
What is weird is, if you copy and paste this string (72.X.Y.Z/32) this works; both packer build . and packer build <file> work as expected.
Looka like I'm having the same issue: https://github.com/hashicorp/packer-plugin-amazon/issues/439 @ciberesponce did you solve this?