🚧 first real commit

This commit is contained in:
Neill Cox 2023-11-12 23:28:56 +00:00
parent 3d3405677a
commit 9a7c57e824
2 changed files with 47 additions and 0 deletions

20
list-flavors.yml Normal file
View file

@ -0,0 +1,20 @@
---
- name: Get info
hosts: migrator
tasks:
- name: Gather information about all available flavors
openstack.cloud.compute_flavor_info:
cloud: dst_admin
register: dst_flavors_info
- name: scan available flavors
openstack.cloud.compute_flavor_info:
cloud: src_admin
register: src_flavors_info
- name: show dst flavors
debug:
msg: "{{dst_flavors_info}}"
- name: show src flavors
debug:
msg: "{{src_flavors_info}}"