File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 80
80
81
81
# Workaround bug https://bugs.launchpad.net/ansible-collections-openstack/+bug/2049658
82
82
# by looking up external network information using networks_info and then explicitly
83
- # passing the network ID into the openstack.cloud.router. Remove this workaround and
83
+ # passing the network ID into the openstack.cloud.router. Remove this workaround and
84
84
# uncomment code above when bug is fixed.
85
85
86
86
- name : Ensure router is registered with neutron
87
87
# Can't loop over blocks in Ansible so have to
88
88
# include separate tasks file instead :(
89
- include_tasks : router_workaround.yml
89
+ ansible.builtin. include_tasks : router_workaround.yml
90
90
with_items : " {{ os_networks_routers }}"
91
91
when : item.state | default('present') == 'present'
92
92
Original file line number Diff line number Diff line change 3
3
# passing the network ID into the openstack.cloud.router's network field.
4
4
5
5
# NOTE: When the item.network parameter is an ID then we are effectively querying a
6
- # network by ID just to extract it's ID... but since the 'name' field of
6
+ # network by ID just to extract it's ID... but since the 'name' field of
7
7
# openstack.cloud.networks_info makes no distinction between names and IDs we can't
8
8
# really avoid this.
9
9
You can’t perform that action at this time.
0 commit comments