--- layout: docs page_title: sentinel Stanza - Agent Configuration sidebar_title: sentinel description: >- The "sentinel" stanza configures the Nomad agent for Sentinel policies and tune various parameters. --- # `sentinel` Stanza The `sentinel` stanza configures the Sentinel policy engine and tunes various parameters. ```hcl sentinel { import "custom-plugin" { path = "/usr/bin/sentinel-custom-plugin" args = ["-verbose", "foo"] } } ``` ## `sentinel` Parameters - `import` ([Import](#import-parameters): nil) - Specifies a plugin that should be made available for importing by Sentinel policies. The name of the import matches the name that can be imported. ### `import` Parameters - `path` `(string: "")` - Specifies the path to the import plugin. Must be executable by Nomad. - `args` `(array: [])` - Specifies arguments to pass to the plugin when starting it.