github.com/smintz/nomad@v0.8.3/website/source/docs/agent/configuration/sentinel.html.md (about)

     1  ---
     2  layout: "docs"
     3  page_title: "sentinel Stanza - Agent Configuration"
     4  sidebar_current: "docs-agent-configuration-sentinel"
     5  description: |-
     6    The "sentinel" stanza configures the Nomad agent for Sentinel policies and tune various parameters.
     7  ---
     8  
     9  # `sentinel` Stanza
    10  
    11  <table class="table table-bordered table-striped">
    12    <tr>
    13      <th width="120">Placement</th>
    14      <td>
    15        <code>**sentinel**</code>
    16      </td>
    17    </tr>
    18  </table>
    19  
    20  The `sentinel` stanza configures the Sentinel policy engine and tunes various parameters.
    21  
    22  ```hcl
    23  sentinel {
    24      import "custom-plugin" {
    25          path = "/usr/bin/sentinel-custom-plugin"
    26          args = ["-verbose", "foo"]
    27      }
    28  }
    29  ```
    30  
    31  ## `sentinel` Parameters
    32  
    33  - `import` <code>([Import](#import-parameters): nil)</code> -
    34    Specifies a plugin that should be made available for importing by Sentinel policies.
    35    The name of the import matches the name that can be imported.
    36  
    37  ### `import` Parameters
    38  
    39  - `path` `(string: "")` - Specifies the path to the import plugin. Must be executable by Nomad.
    40  
    41  - `args` `(array<string>: [])` - Specifies arguments to pass to the plugin when starting it.
    42