terraform-aws-alb
terraform-aws-alb copied to clipboard
fix: the variable type for 'extra_ssl_certs' does not match the type expected in the module
Signed-off-by: Noah Krause [email protected]
Description
The aws_lb_listener_certificate resource expects the var to have fields https_listener_index and certificate_arn. Type list(map(string))) does not support passing in an object that sets these fields correctly
Motivation and Context
Currently, you cannot set extra_ssl_certs correctly since the type does not support setting the required fields
Breaking Changes
None
How Has This Been Tested?
- [x] I have updated at least one of the
examples/*to demonstrate and validate my change(s) - [x] I have tested and validated these changes using one or more of the provided
examples/*projects
- [x] I have executed
pre-commit run -aon my pull request