{% extends "horizon/common/_modal_form.html" %} {% load i18n %} {% load url from future %} {% block form_id %}create_volume_form{% endblock %} {% block form_action %}{% url 'horizon:admin:volumes:volume_types:create_type_encryption' volume_type_id %}{% endblock %} {% block modal_id %}create_volume_type_modal{% endblock %} {% block modal-header %}{% trans "Create Volume Type Encryption" %}{% endblock %} {% block modal-body %}
{% include "horizon/common/_form_fields.html" %}

{% trans "Description:" %}

{% trans "Creating encryption for a volume type causes all volumes with that volume type to be encrypted. Encryption information cannot be added to a volume type if volumes are currently in use with that volume type." %}

{% blocktrans %}The Provider is the class providing encryption support (e.g. LuksEncryptor).{% endblocktrans %}

{% blocktrans %}The Control Location is the notional service where encryption is performed (e.g., front-end=Nova). The default value is 'front-end.'{% endblocktrans %}

{% blocktrans %}The Cipher is the encryption algorithm/mode to use (e.g., aes-xts-plain64). If the field is left empty, the provider default will be used.{% endblocktrans %}

{% blocktrans %}The Key Size is the size of the encryption key, in bits (e.g., 128, 256). If the field is left empty, the provider default will be used.{% endblocktrans %}

{% endblock %} {% block modal-footer %} {% trans "Cancel" %} {% endblock %}