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
Managing the following resources should create the topology elements once, and then not show any required changed on a subsequent terraform plan
terraform plan
resource "ec_deployment" "staging" { region = "eu-west-1" version = data.ec_stack.latest.version deployment_template_id = "aws-storage-optimized" elasticsearch { autoscale = "true" topology { id = "hot_content" size = "1g" zone_count = 3 autoscaling { max_size = "8g" } } topology { id = "ml" zone_count = 1 autoscaling { min_size = "0gb" max_size = "60gb" } } } kibana { topology { size = "1g" zone_count = 2 } } }
The provider does not treat the unsized ML tier as existing, and attempts to create it on each subsequent terraform plan|apply
terraform plan|apply
## Terraform definition
terraform apply
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Readiness Checklist
Expected Behavior
Managing the following resources should create the topology elements once, and then not show any required changed on a subsequent
terraform plan
Current Behavior
The provider does not treat the unsized ML tier as existing, and attempts to create it on each subsequent
terraform plan|apply
## Terraform definition
Steps to Reproduce
terraform apply
terraform apply
The text was updated successfully, but these errors were encountered: