Terraform Infoblox provider issue - Extensible attribute 'Terraform Internal ID' is not allowed for this operation

Hi Team,

I have upgraded Infoblox Terraform Provider to use >=2.7.0 & <3 in my code and added extensible attribute in Infoblox tool as one of the pre requisite before executing script as provided in the below link:

GitHub - infobloxopen/terraform-provider-infoblox: Infoblox NIOS Terraform Provider)-,To%20use%20the%20Infoblox%20IPAM%20Plug%2DIn%20for%20Terraform%2C%20you%20must,.%20for%20more%20details%20refer%20to%20the%20Infoblox%20NIOS%20Documentation.,-curl%20%2Dk%20%2Du

→ On executing the code I am observing the following error:

│ Error: creation of A-record under DNS view ‘Internal’ failed: WAPI request error: 400(‘400 Bad Request’)
│ Contents:
│ { “Error”: “AdmConDataError: None (IBDataConflictError: IB.Data.Conflict:Extensible attribute ‘Terraform Internal ID’ is not allowed for this operation)”,
│ “code”: “Client.Ibap.Data.Conflict”,
│ “text”: “Extensible attribute ‘Terraform Internal ID’ is not allowed for this operation”
│ }


│ with infoblox_a_record.a_record_vm1,
│ on dns.tf line 39, in resource “infoblox_a_record” “a_record_vm1”:
│ 39: resource “infoblox_a_record” “a_record_vm1” {



│ Error: creation of CNAME Record under Internal DNS View failed: WAPI request error: 400(‘400 Bad Request’)
│ Contents:
│ { “Error”: “AdmConDataError: None (IBDataConflictError: IB.Data.Conflict:Extensible attribute ‘Terraform Internal ID’ is not allowed for this operation)”,
│ “code”: “Client.Ibap.Data.Conflict”,
│ “text”: “Extensible attribute ‘Terraform Internal ID’ is not allowed for this operation”
│ }


│ with infoblox_cname_record.VM_cname1,
│ on dns.tf line 47, in resource “infoblox_cname_record” “VM_cname1”:
│ 47: resource “infoblox_cname_record” “VM_cname1” {

→ Previously when I executed the code without adding the extensible attribute in Infoblox, I see the error as below:

Planning failed. Terraform encountered an error while generating this plan.

Error: WAPI request error: 400(‘400 Bad Request’)

│ Contents:

│ { “Error”: “AdmConDataError: None (IBDataConflictError: IB.Data.Conflict:Cannot create extensible attribute definition ‘Terraform Internal ID’. Only superusers can manage extensible attribute definition)”,

│ “code”: “Client.Ibap.Data.Conflict”,

│ “text”: “Cannot create extensible attribute definition ‘Terraform Internal ID’. Only superusers can manage extensible attribute definition”

│ }

It would be great help if anyone can provide some suggestions on resolving this issue.

Thanks