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
When you remove a key from the keystone configuration, it should be removed from the deployment.
The key is not removed
## Terraform definition
Create configuration A
terraform { required_version = ">= 0.12.29" required_providers { ec = { source = "elastic/ec" version = "0.12.2" } } } provider "ec" { endpoint = "https://my.ece-environment.corp" insecure = true apikey = "my-apikey" } data "ec_stack" "latest" { version_regex = "latest" region = "us-east-1" } resource "ec_deployment" "example_minimal" { name = "my_example_deployment" region = "us-east-1" version = data.ec_stack.latest.version deployment_template_id = "aws-io-optimized-v2" elasticsearch = { hot = { autoscaling = {} } keystore_contents = { "gcs.client.external.credentials_file" = { value = file("./gcp-credentials.json") as_file = true } } }
Update configuration B without the key
terraform { required_version = ">= 0.12.29" required_providers { ec = { source = "elastic/ec" version = "0.12.2" } } } provider "ec" { endpoint = "https://my.ece-environment.corp" insecure = true apikey = "my-apikey" } data "ec_stack" "latest" { version_regex = "latest" region = "us-east-1" } resource "ec_deployment" "example_minimal" { name = "my_example_deployment" region = "us-east-1" version = data.ec_stack.latest.version deployment_template_id = "aws-io-optimized-v2" elasticsearch = { hot = { autoscaling = {} } }
gcs.client.external.credentials_file
The workaround is remove the key manually from the UI.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Readiness Checklist
Expected Behavior
When you remove a key from the keystone configuration, it should be removed from the deployment.
Current Behavior
The key is not removed
## Terraform definition
Create configuration A
Update configuration B without the key
Steps to Reproduce
gcs.client.external.credentials_file
Context
Possible Solution
The workaround is remove the key manually from the UI.
Your Environment
The text was updated successfully, but these errors were encountered: