mirror of
https://github.com/trailofbits/algo.git
synced 2025-08-01 18:33:06 +02:00
Update prompts.yml
- Make the regions list more readable - Assign us-east as the default region
This commit is contained in:
parent
000b044f33
commit
56f37d6348
1 changed files with 5 additions and 2 deletions
|
@ -25,13 +25,16 @@
|
||||||
|
|
||||||
- name: Set default region
|
- name: Set default region
|
||||||
set_fact:
|
set_fact:
|
||||||
default_region: 1
|
default_region: >-
|
||||||
|
{% for r in linode_regions %}
|
||||||
|
{%- if r['id'] == "us-east" %}{{ loop.index }}{% endif %}
|
||||||
|
{%- endfor %}
|
||||||
|
|
||||||
- pause:
|
- pause:
|
||||||
prompt: |
|
prompt: |
|
||||||
What region should the server be located in?
|
What region should the server be located in?
|
||||||
{% for r in linode_regions %}
|
{% for r in linode_regions %}
|
||||||
{{ loop.index }}. {{ r['country'] }}
|
{{ loop.index }}. {{ r['id'] }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
Enter the number of your desired region
|
Enter the number of your desired region
|
||||||
|
|
Loading…
Add table
Reference in a new issue