mirror of
https://github.com/trailofbits/algo.git
synced 2025-06-06 15:13:56 +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
|
## 7 Sep 2018
|
||||||
### Changed
|
### Changed
|
||||||
- Azure: Deployment via Azure Resource Manager
|
- 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)
|
* Blocks ads with a local DNS resolver (optional)
|
||||||
* Sets up limited SSH users for tunneling traffic (optional)
|
* Sets up limited SSH users for tunneling traffic (optional)
|
||||||
* Based on current versions of Ubuntu and strongSwan
|
* 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
|
## Anti-features
|
||||||
|
|
||||||
|
|
|
@ -129,7 +129,7 @@ cloud_providers:
|
||||||
external_static_ip: false
|
external_static_ip: false
|
||||||
lightsail:
|
lightsail:
|
||||||
size: nano_1_0
|
size: nano_1_0
|
||||||
image: ubuntu_16_04
|
image: ubuntu_18_04
|
||||||
scaleway:
|
scaleway:
|
||||||
size: START1-S
|
size: START1-S
|
||||||
image: Ubuntu Bionic Beaver
|
image: Ubuntu Bionic Beaver
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
store_cakey: false
|
store_cakey: false
|
||||||
providers_map:
|
providers_map:
|
||||||
- { name: DigitalOcean, alias: digitalocean }
|
- { name: DigitalOcean, alias: digitalocean }
|
||||||
|
- { name: Amazon Lightsail, alias: lightsail }
|
||||||
- { name: Amazon EC2, alias: ec2 }
|
- { name: Amazon EC2, alias: ec2 }
|
||||||
- { name: Vultr, alias: vultr }
|
- { name: Vultr, alias: vultr }
|
||||||
- { name: Microsoft Azure, alias: azure }
|
- { name: Microsoft Azure, alias: azure }
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
set_fact:
|
set_fact:
|
||||||
default_region: >-
|
default_region: >-
|
||||||
{% for r in lightsail_regions %}
|
{% for r in lightsail_regions %}
|
||||||
{%- if r['name'] == "eu-west-1" %}{{ loop.index }}{% endif %}
|
{%- if r['name'] == "us-east-1" %}{{ loop.index }}{% endif %}
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
|
|
||||||
- pause:
|
- pause:
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
What region should the server be located in?
|
What region should the server be located in?
|
||||||
(https://aws.amazon.com/about-aws/global-infrastructure/regional-product-services/)
|
(https://aws.amazon.com/about-aws/global-infrastructure/regional-product-services/)
|
||||||
{% for r in lightsail_regions %}
|
{% for r in lightsail_regions %}
|
||||||
{{ loop.index }}. {{ r['name'] }} {{ r['displayName'] }}
|
{{ (loop.index|string + '.').ljust(3) }} {{ r['name'].ljust(20) }} {{ r['displayName'] }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
Enter the number of your desired region
|
Enter the number of your desired region
|
||||||
|
|
Loading…
Add table
Reference in a new issue