We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the variables definition file, for portMappings, there is a repeated name argument. This causes terraform init with version 0.61.0 to fail.
name
A terraform init with version 0.61.0 should go through with no errors.
terraform init
Set version of the module to 0.61.0 and run a terraform init.
╷ │ Error: Invalid type specification │ │ on .terraform/modules/haproxy.ecs_container/variables.tf line 107, in variable "container_definition": │ 102: portMappings = optional(list(object({ │ 103: name = optional(string) │ 104: containerPort = number │ 105: hostPort = optional(number) │ 106: protocol = optional(string) │ 107: name = optional(string) │ 108: appProtocol = optional(string) │ 109: }))) │ │ Object constructor map keys must be unique. ╵
No response
The text was updated successfully, but these errors were encountered:
Fixed by #170 or #171
Sorry, something went wrong.
Can we get one of them merged please?
No branches or pull requests
Describe the Bug
In the variables definition file, for portMappings, there is a repeated
name
argument. This causes terraform init with version 0.61.0 to fail.Expected Behavior
A
terraform init
with version 0.61.0 should go through with no errors.Steps to Reproduce
Set version of the module to 0.61.0 and run a
terraform init
.Screenshots
Environment
Additional Context
No response
The text was updated successfully, but these errors were encountered: