2021-06-03 20:30:26 +00:00
{{ # if this .licenseExpired }}
<div class="license-banner-wrapper" data-test-license-banner data-test-license-banner-expired>
<AlertBanner
@type="danger"
@title="License expired"
@message="Your Vault license expired on {{ date-format @ expiry "MMM d, yyyy" }} . Add a new license to your configuration and restart Vault."
@marginless= {{ true }}
>
<a href="https://learn.hashicorp.com/tutorials/nomad/hashicorp-enterprise-license" target="_blank" rel="noreferrer noopener">Read documentation</a>
</AlertBanner>
</div>
{{ else if ( lte this .licenseExpiringInDays 3 0 ) }}
<div class="license-banner-wrapper" data-test-license-banner data-test-license-banner-warning>
<AlertBanner
@type="warning"
@title="Vault license expiring"
2021-06-10 22:49:49 +00:00
@message="Your Vault license will expire in {{ this .licenseExpiringInDays }} days at {{ date-format @ expiry "hh:mm:ss a" }} on {{ date-format @ expiry "MMM d, yyyy" }} . {{ if @ autoloaded 'Add a new license to your configuration.' 'Keep in mind that your next license will need to be autoloaded' }} "
2021-06-03 20:30:26 +00:00
@marginless= {{ true }}
>
<a href="https://learn.hashicorp.com/tutorials/nomad/hashicorp-enterprise-license" target="_blank" rel="noreferrer noopener">Read documentation</a>
</AlertBanner>
</div>
{{ / if }}