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
the size specified for a particular topology should be for the storage aspect of the configuration when using size_resource = "storage"
size_resource = "storage"
Issue similar to ##568 When I run terraform apply with specified size_resource = "storage", I got the hot tier sized by RAM instead of storage.
terraform apply
## Terraform definition
resource "ec_deployment" "this" { name = "Terraform test" region = var.region version = data.ec_stack.latest.version deployment_template_id = "azure-general-purpose-v2" elasticsearch = { autoscale = false hot = { size = "35g" size_resource = "storage" zone_count = 1 autoscaling = {} } coordinating = { size = "1g" zone_count = 2 autoscaling = {} } } kibana = { size = "1g" zone_count = 1 } observability = { deployment_id = "self" logs = true metrics = true } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Readiness Checklist
Expected Behavior
the size specified for a particular topology should be for the storage aspect of the configuration when using
size_resource = "storage"
Current Behavior
Issue similar to ##568
When I run
terraform apply
with specifiedsize_resource = "storage"
, I got the hot tier sized by RAM instead of storage.## Terraform definition
Steps to Reproduce
Context
Possible Solution
Your Environment
The text was updated successfully, but these errors were encountered: