2021-03-11 09:29:11 +00:00
|
|
|
<fieldset
|
|
|
|
disabled={{if (not (can "write token" item=item)) "disabled"}}
|
|
|
|
>
|
2018-10-19 15:17:02 +00:00
|
|
|
{{#if create }}
|
2020-05-11 14:05:49 +00:00
|
|
|
<div class="type-toggle">
|
2018-10-19 15:17:02 +00:00
|
|
|
<label>
|
2020-05-11 14:05:49 +00:00
|
|
|
<input type="checkbox" name="Local" checked={{if Local 'checked' }} onchange={{action 'change'}} />
|
|
|
|
<span>Restrict this token to a local datacenter?</span>
|
2018-10-19 15:17:02 +00:00
|
|
|
</label>
|
2020-05-11 14:05:49 +00:00
|
|
|
<em>Local tokens get set in the Raft store of the local DC and do not ever get transmitted to the primary DC or replicated to any other DC.</em>
|
2018-10-19 15:17:02 +00:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
<label class="type-text validate-optional">
|
|
|
|
<span>Description (Optional)</span>
|
|
|
|
<textarea name="Description" oninput={{action 'change'}}>{{item.Description}}</textarea>
|
|
|
|
</label>
|
|
|
|
</fieldset>
|
2019-05-01 18:09:29 +00:00
|
|
|
<fieldset id="roles">
|
|
|
|
<h2>Roles</h2>
|
2021-03-11 09:29:11 +00:00
|
|
|
<RoleSelector
|
|
|
|
@disabled={{not (can "write token" item=item)}}
|
|
|
|
@dc={{dc}}
|
2021-09-15 18:50:11 +00:00
|
|
|
@partition={{partition}}
|
2021-03-11 09:29:11 +00:00
|
|
|
@nspace={{nspace}}
|
|
|
|
@items={{item.Roles}}
|
|
|
|
/>
|
2019-05-01 18:09:29 +00:00
|
|
|
</fieldset>
|
|
|
|
<fieldset id="policies">
|
2018-10-19 15:17:02 +00:00
|
|
|
<h2>Policies</h2>
|
2021-03-11 09:29:11 +00:00
|
|
|
<PolicySelector
|
|
|
|
@disabled={{not (can "write token" item=item)}}
|
|
|
|
@dc={{dc}}
|
2021-09-15 18:50:11 +00:00
|
|
|
@partition={{partition}}
|
2021-03-11 09:29:11 +00:00
|
|
|
@nspace={{nspace}}
|
|
|
|
@items={{item.Policies}}
|
|
|
|
/>
|
2018-10-19 15:17:02 +00:00
|
|
|
</fieldset>
|