mirror of
https://github.com/trailofbits/algo.git
synced 2025-09-09 13:33:00 +02:00
- Add no_log directives to all cloud provider credential handling - Set privacy-focused defaults (StrongSwan logging disabled, DNSCrypt syslog off) - Implement privacy role with log rotation, history clearing, and log filtering - Add Privacy Considerations section to README - Make all privacy features configurable and enabled by default This update significantly reduces Algo's logging footprint to enhance user privacy while maintaining the ability to enable logging for debugging when needed.
31 lines
991 B
YAML
31 lines
991 B
YAML
---
|
|
- pause:
|
|
prompt: |
|
|
Enter your auth token (https://trailofbits.github.io/algo/cloud-scaleway.html)
|
|
echo: false
|
|
register: _scaleway_token
|
|
when:
|
|
- scaleway_token is undefined
|
|
- lookup('env','SCW_TOKEN')|length <= 0
|
|
no_log: true
|
|
|
|
- pause:
|
|
prompt: |
|
|
What region should the server be located in?
|
|
{% for r in scaleway_regions %}
|
|
{{ loop.index }}. {{ r['alias'] }}
|
|
{% endfor %}
|
|
|
|
Enter the number of your desired region
|
|
[{{ scaleway_regions.0.alias }}]
|
|
register: _algo_region
|
|
when: region is undefined
|
|
|
|
- name: Set scaleway facts
|
|
set_fact:
|
|
algo_scaleway_token: "{{ scaleway_token | default(_scaleway_token.user_input) | default(lookup('env','SCW_TOKEN'), true) }}"
|
|
algo_region: >-
|
|
{% if region is defined %}{{ region }}
|
|
{%- elif _algo_region.user_input %}{{ scaleway_regions[_algo_region.user_input | int -1 ]['alias'] }}
|
|
{%- else %}{{ scaleway_regions.0.alias }}{% endif %}
|
|
no_log: true
|