Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix validation error for resource_allocation (#5)
There's a mistake in the validation for ``` var.resource_allocation.cores > var.resource_allocation.vcpus ``` This should in fact be ``` var.resource_allocation.cores >= var.resource_allocation.vcpus ``` as the config for cores and vcpus can be equals to each other but not vcpus larger than cores.
- Loading branch information