Issue wtih dns split profile assignment. Below is my terraform code
- This network currently has no MX but I dont think it matters as API request only require network_id.
- The API request seemed to work as I checked Change logs on Meraki dashboard and the split DNS is enabled and assigned to a profile but Terraform returned error message
#Split DNS
resource "meraki_appliance_dns_split_profile_assignments" "this" {
organization_id = var.meraki_organization_id
items = [{
network_id = meraki_network.this.id
profile_id = var.env == "prod" ? "3911376276371275777" : "709316941310853166"
}]
}
