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
Hi, Let's assume, I deployed a feature flag using this configuration
resource "launchdarkly_feature_flag" "your-feature-flag-key" { project_key = local.project_key key = "your-feature-flag-key" name = "Your feature flag name" description = "Your feature flag short description" variation_type = "boolean" tags = ["some", "tags"] temporary = true variations { value = false } variations { value = true } defaults { off_variation = 0 on_variation = 1 } client_side_availability { using_environment_id = true } }
If I modify the defaults of one of the variation off_variation = 1, the client-side availability is also updated, which I don't think is expected.
off_variation = 1
Thank you.
The text was updated successfully, but these errors were encountered:
This was fixed in 2.10.0. Thanks
Sorry, something went wrong.
No branches or pull requests
Hi,
Let's assume, I deployed a feature flag using this configuration
If I modify the defaults of one of the variation
off_variation = 1
, the client-side availability is also updated, which I don't think is expected.Thank you.
The text was updated successfully, but these errors were encountered: