...
data "infoblox_txt_record" "ds3" {
filters = {
dns_ view = "nondefault_dnsview1"
name = "example3.example2.org"
text = "\"data for TXT-record #3\""
}
// This is just to ensure that the record has been created
// using 'infoblox_txt_record' resource block before the data source will be queried.
depends_on = [infoblox_txt_record.rec3]
}
...
// throws matching TXT-Records with EA, if any
output "txt_rec_out" {
value = data.infoblox_infobloxtxt_record.txt_rec_ea
}