mirror of
https://github.com/trailofbits/algo.git
synced 2026-08-17 21:25:50 +02:00
* fix: add explicit bool filters for Ansible 12 jinja2_native compatibility Ansible 12 enables jinja2_native by default, which means string values like "true"/"false" are no longer automatically coerced to booleans in when: conditions and Jinja2 if statements. Add | bool filters to all boolean variable references in tasks, templates, and handlers. Also reformats long single-line Jinja2 conditionals into multi-line for readability, fixes GCE default() calls for native mode, adds help command to the algo script, and updates test fixtures to register the bool filter. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * ci: add j2lint for Jinja2 template linting Add j2lint (aristanetworks/j2lint) to catch syntax errors, spacing issues, and operator formatting in Jinja2 templates. Integrated into pre-commit hooks, lint.yml CI, and smart-tests.yml. Rules S3/S5/S6/S7/V1 are ignored — they enforce conventions incompatible with Ansible's config-file-embedded templates. Also fixes int+1 → int + 1 operator spacing in server.conf.j2. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: resolve all ansible-lint warnings and enforce zero-tolerance policy Fix 18 jinja[spacing] errors across 12 files by moving Jinja2 block delimiters to prevent YAML >- folding from introducing trailing spaces. Fix 27 key-order[task] warnings across 17 files by reordering task keys to canonical order (name → when → tags → environment → become → block). Promote key-order[task] and yaml[line-length] from warn_list to hard errors by removing warn_list entirely from .ansible-lint. Add zero-tolerance warning policy to CLAUDE.md explaining why warnings are unacceptable in a security tool and documenting resolution order. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
83 lines
2.7 KiB
YAML
83 lines
2.7 KiB
YAML
---
|
|
- pause:
|
|
prompt: |
|
|
Enter the local path to your credentials JSON file
|
|
(https://support.google.com/cloud/answer/6158849?hl=en&ref_topic=6262490#serviceaccounts)
|
|
register: _gce_credentials_file
|
|
when:
|
|
- gce_credentials_file is undefined
|
|
- lookup('env', 'GCE_CREDENTIALS_FILE_PATH')|length <= 0
|
|
no_log: true
|
|
|
|
- set_fact:
|
|
credentials_file_path: >-
|
|
{{ gce_credentials_file | default(_gce_credentials_file.user_input|default(None)) |
|
|
default(lookup('env', 'GCE_CREDENTIALS_FILE_PATH'), true) }}
|
|
ssh_public_key_lookup: "{{ lookup('file', SSH_keys.public) }}"
|
|
no_log: true
|
|
|
|
- set_fact:
|
|
credentials_file_lookup: "{{ lookup('file', credentials_file_path) | from_json }}"
|
|
no_log: true
|
|
|
|
- set_fact:
|
|
service_account_email: "{{ credentials_file_lookup.client_email | default(lookup('env', 'GCE_EMAIL'), true) }}"
|
|
project_id: "{{ credentials_file_lookup.project_id | default(lookup('env', 'GCE_PROJECT'), true) }}"
|
|
no_log: true
|
|
|
|
- when: region is undefined
|
|
block:
|
|
- name: Get regions
|
|
gcp_compute_location_info:
|
|
auth_kind: serviceaccount
|
|
service_account_file: "{{ credentials_file_path }}"
|
|
project: "{{ project_id }}"
|
|
scope: regions
|
|
filters: status=UP
|
|
register: gcp_compute_regions_info
|
|
|
|
- name: Set facts about the regions
|
|
set_fact:
|
|
gce_regions: "{{ gcp_compute_regions_info.resources | sort(attribute='name') }}"
|
|
|
|
- name: Set facts about the default region
|
|
set_fact:
|
|
default_region: >-
|
|
{% for r in gce_regions -%}
|
|
{% if r.name == "us-east1" %}{{ loop.index }}{% endif %}
|
|
{%- endfor %}
|
|
|
|
- pause:
|
|
prompt: |
|
|
What region should the server be located in?
|
|
(https://cloud.google.com/compute/docs/regions-zones/#locations)
|
|
{% for r in gce_regions %}
|
|
{{ loop.index }}. {{ r.name }}
|
|
{% endfor %}
|
|
|
|
Enter the number of your desired region
|
|
[{{ default_region }}]
|
|
register: _gce_region
|
|
|
|
- name: Set region as a fact
|
|
set_fact:
|
|
algo_region: >-
|
|
{% if region is defined %}{{ region -}}
|
|
{% elif _gce_region.user_input %}{{ gce_regions[_gce_region.user_input | int - 1].name -}}
|
|
{% else %}{{ gce_regions[default_region | int - 1].name }}{% endif %}
|
|
|
|
- name: Get zones
|
|
gcp_compute_location_info:
|
|
auth_kind: serviceaccount
|
|
service_account_file: "{{ credentials_file_path }}"
|
|
project: "{{ project_id }}"
|
|
scope: zones
|
|
filters:
|
|
- name={{ algo_region }}-*
|
|
- status=UP
|
|
register: gcp_compute_zone_info
|
|
|
|
- name: Set random available zone as a fact
|
|
set_fact:
|
|
algo_zone: "{{ (gcp_compute_zone_info.resources | random(seed=algo_server_name + algo_region + project_id)).name }}"
|