# Issues with Field level security

**URL:** https://discuss.elastic.co/t/issues-with-field-level-security/52747
**Category:** Elasticsearch
**Tags:** elastic-stack-security
**Created:** [June 14, 2016, 2:46pm UTC](https://discuss.elastic.co/t/issues-with-field-level-security/52747 "2016-06-14T14:46:49Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![CalebC](https://avatars.discourse-cdn.com/v4/letter/c/2bfe46/32.png) [@CalebC](https://discuss.elastic.co/u/CalebC)
#### Post date: [June 14, 2016, 2:46pm UTC](https://discuss.elastic.co/t/issues-with-field-level-security/52747/1 "2016-06-14T14:46:49Z")

</div>

I'm using the latest versions of Shield and ES(Non X-pack). What I'm having problems with, is that every time I implement a field level role to a user it then returns no results and hides everything from them. I'll put some of my configs below maybe you guys know what might be going on.

```auto
POST /_shield/user/hostonly
{
  "roles": [
    "limited_role",
    "kibana_user"
  ],
  "full_name": null,
  "email": null,
  "metadata": {},
  "password": "password"
}

POST /_shield/role/limited_role
{
  "cluster": [
    "all"
  ],
  "indices": [
    {
      "names": [
        "logstash-*"
      ],
      "privileges": [
        "read"
      ],
      "fields": [
        "host"
      ]
    }
  ]
}

POST /_shield/role/kibana_user
{
  "cluster": [
    "monitor"
  ],
  "indices": [
    {
      "names": [
        ".kibana*"
      ],
      "privileges": [
        "manage",
        "read",
        "index"
      ]
    }
  ],
  "run_as": []
}

```

If there's any other information you guys might need just tell me. Thanks.

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [July 6, 2017, 1:44pm UTC](https://discuss.elastic.co/t/issues-with-field-level-security/52747/2 "2017-07-06T13:44:02Z")

</div>


