mirror of
https://github.com/trailofbits/algo.git
synced 2025-07-25 06:53:00 +02:00
10 lines
298 B
YAML
10 lines
298 B
YAML
---
|
|
- name: Set image id as a fact
|
|
set_fact:
|
|
image_id: "{{ item.id }}"
|
|
no_log: true
|
|
when:
|
|
- cloud_providers.scaleway.image == item.name
|
|
- cloud_providers.scaleway.arch == item.arch
|
|
- server_disk_size == item.root_volume.size
|
|
with_items: "{{ outer_item['json']['images'] }}"
|