{% from 'include/input_macros.html' import input, select, checkbox %} {% from 'include/provisioning/variables.html' import aws_regions, aws_oss, aws_volume_type %} {% for s in server %} {% set region_name = [] %}
General information | |
Server name | {{s.name}} |
Provider credentials * | |
Region | {% for key, value in aws_regions.items() %} {% if s.region|int() == key|int() %} {% do region_name.append(value) %} {% endif %} {% endfor %} {{s.region}} {{region_name.0}} |
Instance | |
Instance type * |
{{input('aws_edit_size', size='26', value=s.instance_type)}}
Instance types list is here
|
OS * | {{ select('aws_edit_oss', values=aws_oss, first=s.os, disabled='false') }} |
SSH key pair name * |
{{input('aws_edit_ssh_name', size='26', value=s.ssh_key_name)}}
SSH key must exists in region where instance create
|
Volume | |
Volume size * | {{input('aws_edit_volume_size', size='26', value=s.volume_size, type='number')}}Gb |
Volume type * | |
Delete on termination |
{% set checked='checked' %}
{% if s.delete_on_termination == 'false' %}
{% set checked='' %}
{% endif %}
{{checkbox('aws_edit_delete_on_termination', checked=checked)}}
Whether the volume should be destroyed on instance termination
|
Network | |
Public IP | |
Firewall |
{{checkbox('aws_edit_firewall', checked=checked)}}
Roxy-WI will create Security group and open 22, 443, 1999, 8085, 8086 ports. Otherwise all ports will be closed
|
Be aware: some changes may cause server re-creation. And all your data will be lost |