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 bug is -
is_read_only = true
is_required = true
What needs to be done here is to add validation that throws exception when both are set to true
true
The text was updated successfully, but these errors were encountered:
Only when value is empty or generally?
Failed, validation failed since var can't be readonly+required, and have no value
also do we need permit creation of variable with no value ?
Sorry, something went wrong.
Yes, since then you can't set the value to the variable (is_read_only = true) but its required, then you are stuck
Yes
Merge branch 'main' into fix_readonly_and_required_noValue-#217
058df02
Merge branch 'main' of https://github.com/env0/terraform-provider-env0 …
b3f6809
…into fix_readonly_and_required_noValue-#217
samuel-br
Successfully merging a pull request may close this issue.
The bug is -
is_read_only = true
,is_required = true
.What needs to be done here is to add validation that throws exception when both are set to
true
The text was updated successfully, but these errors were encountered: