-
Notifications
You must be signed in to change notification settings - Fork 630
New issue
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
refactor(cloudflare_record): remove custom validation in favour of ExactlyOneOf
#3699
Conversation
changelog detected ✅ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a nice improvement. Many thanks!
…xactlyOneOf` Previously, the `cloudlare_record` CRUD operations had their own validation for determining which value combinations could be set together. This is already a built in feature that can be applied at the schema level instead through the `ExactlyOneOf` behaviour instead.
b2ecda3
to
64c3677
Compare
acceptance tests all passing
|
This functionality has been released in v4.40.0 of the Terraform Cloudflare Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
Previously, the
cloudlare_record
CRUD operations had their own validation for determining which value combinations could be set together. This is already a built in feature that can be applied at the schema level instead through theExactlyOneOf
behaviour instead.Follows on from #3674.