-
-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
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
brokers_per_zone instead of number_of_broker_nodes #63
brokers_per_zone instead of number_of_broker_nodes #63
Conversation
/test all |
Sorry, didn't test it all through, feel free to run the tests in now |
/test all |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Evilong thanks for the PR
Please address https://github.com/cloudposse/actions/runs/7863863551?check_suite_focus=true
Error: Invalid value for variable
on main.tf line 39, in module "kafka":
39: subnet_ids = module.subnets.private_subnet_ids
The subnet_ids list must have at atleast 1 value.
we have 2 tests: when the module is enabled and disabled.
when the module is disabled, module.subnets.private_subnet_ids
is an empty list, but the new validation fails b/c of that.
maybe just add
subnet_ids = module.this.enabled ? module.subnets.private_subnet_ids : [""]
This Pull Request has been updated, so we're dismissing all reviews.
That might do it. |
/test all |
What
Why