Hi Team,
I want to provide the field level security , but when i am creating the role with below POST API call ,
POST /_xpack/security/role/offshoreRole
{
"indices": [
{
"names" : [ "logstash-",".kibana" ],
"privileges" : [ "read" ],
"field_security" : {
"grant" : [ "*"],
"except": [ "abc","xyz" ]
}
}
]
}
I am getting
{
"error": {
"root_cause": [
{
"type": "security_exception",
"reason": "current license is non-compliant for [field and document level security]",
"license.expired.feature": "field and document level security"
}
],
"type": "security_exception",
"reason": "current license is non-compliant for [field and document level security]",
"license.expired.feature": "field and document level security"
},
"status": 403
}
we are having the Gold membership .
Could you please confirm , for Gold membership , field security is not possible?