mirror of
https://github.com/KevinMidboe/schleppe-pulumi.git
synced 2026-01-10 03:15:52 +00:00
12 lines
245 B
YAML
12 lines
245 B
YAML
---
|
|
- name: Get openssl version
|
|
hosts: all
|
|
|
|
tasks:
|
|
- name: Gather the package facts
|
|
ansible.builtin.package_facts:
|
|
manager: auto
|
|
|
|
- name: print openssl version
|
|
debug: var=ansible_facts.packages.openssl[0].version
|