This is a magic number (the string is valid) - this is the admin_token parameter in the keystone.conf file. In the [DEFAULT] section of the keystone.conf file,
admin_token = abcd1234
If you do not use it for administrator actions, you will see something like
ubuntu@i-000004bc :~/devstack$ curl http://localhost:35357/v2.0/tenants {"error": {"message": "The request you have made requires authentication.", "code": 401, "title": "Not Authorized"}}
If you use it, you will see something like
ubuntu@i-000004bc :~/devstack$ curl -H "X-Auth-Token: abcd1234" http://localhost:35357/v2.0/tenants {"tenants_links": [], "tenants": [{"enabled": true, "description": null, "name": "demo", "id": "aee8a46babcb4e4286021c8f6ef996cd"}, {"enabled": true, "description": null, "name": "invisible_to_admin", "id": "de17fea45de148ada0a58e998e6c3e73"}, {"enabled": true, "description": null, "name": "admin", "id": "f34b0c8ab30e450489b121fbe723fde5"}, {"enabled": true, "description": null, "name": "service", "id": "fbe3e2e530fd47298cb2cba1b4afa3da"}]}
source share