mirror of
https://github.com/trailofbits/algo.git
synced 2025-04-16 22:27:20 +02:00
Lightsail back (#1157)
This commit is contained in:
parent
fbc7b29456
commit
3468d27e61
5 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
## 20 Oct 2018
|
||||
### Added
|
||||
- AWS Lightsail
|
||||
|
||||
## 7 Sep 2018
|
||||
### Changed
|
||||
- Azure: Deployment via Azure Resource Manager
|
||||
|
|
|
@ -14,7 +14,7 @@ Algo VPN is a set of Ansible scripts that simplify the setup of a personal IPSEC
|
|||
* Blocks ads with a local DNS resolver (optional)
|
||||
* Sets up limited SSH users for tunneling traffic (optional)
|
||||
* Based on current versions of Ubuntu and strongSwan
|
||||
* Installs to DigitalOcean, Amazon EC2, Vultr, Microsoft Azure, Google Compute Engine, Scaleway, OpenStack or your own Ubuntu 18.04 LTS server
|
||||
* Installs to DigitalOcean, Amazon Lightsail, Amazon EC2, Vultr, Microsoft Azure, Google Compute Engine, Scaleway, OpenStack or your own Ubuntu 18.04 LTS server
|
||||
|
||||
## Anti-features
|
||||
|
||||
|
|
|
@ -129,7 +129,7 @@ cloud_providers:
|
|||
external_static_ip: false
|
||||
lightsail:
|
||||
size: nano_1_0
|
||||
image: ubuntu_16_04
|
||||
image: ubuntu_18_04
|
||||
scaleway:
|
||||
size: START1-S
|
||||
image: Ubuntu Bionic Beaver
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
store_cakey: false
|
||||
providers_map:
|
||||
- { name: DigitalOcean, alias: digitalocean }
|
||||
- { name: Amazon Lightsail, alias: lightsail }
|
||||
- { name: Amazon EC2, alias: ec2 }
|
||||
- { name: Vultr, alias: vultr }
|
||||
- { name: Microsoft Azure, alias: azure }
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
set_fact:
|
||||
default_region: >-
|
||||
{% for r in lightsail_regions %}
|
||||
{%- if r['name'] == "eu-west-1" %}{{ loop.index }}{% endif %}
|
||||
{%- if r['name'] == "us-east-1" %}{{ loop.index }}{% endif %}
|
||||
{%- endfor %}
|
||||
|
||||
- pause:
|
||||
|
@ -45,7 +45,7 @@
|
|||
What region should the server be located in?
|
||||
(https://aws.amazon.com/about-aws/global-infrastructure/regional-product-services/)
|
||||
{% for r in lightsail_regions %}
|
||||
{{ loop.index }}. {{ r['name'] }} {{ r['displayName'] }}
|
||||
{{ (loop.index|string + '.').ljust(3) }} {{ r['name'].ljust(20) }} {{ r['displayName'] }}
|
||||
{% endfor %}
|
||||
|
||||
Enter the number of your desired region
|
||||
|
|
Loading…
Add table
Reference in a new issue