Developing Discourse Plugins - Part 5 - Add an admin interface

export default {
  resource: 'admin.adminPlugins',
  path: '/plugins',
  map() {
    this.route('purple-tentacle');
  }
};

What do we exactly specify in the resource field here?