Skip to content

Commit af957c6

Browse files
committed
Align with naming in os_images
os_images using os_images_region and not region_name.
1 parent 24c3735 commit af957c6

File tree

16 files changed

+31
-31
lines changed

16 files changed

+31
-31
lines changed

roles/os_container_clusters/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ virtualenv.
2121
`os_container_clusters_auth` is a dict containing authentication information
2222
compatible with the `auth` argument of `openstack.cloud` Ansible modules.
2323

24-
`os_container_clusters_region_name` is an optional name of an OpenStack region.
24+
`os_container_clusters_region` is an optional name of an OpenStack region.
2525

2626
`os_container_clusters_cacert` is an optional path to a CA certificate bundle.
2727

roles/os_container_clusters/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
ansible_python_interpreter: "{{ os_container_clusters_venv ~ '/bin/python' if os_container_clusters_venv != None else old_ansible_python_interpreter }}"
1616
openstack.cloud.coe_cluster_template:
1717
auth: "{{ os_container_clusters_auth }}"
18-
region_name: "{{ os_container_clusters_region_name | default(omit) }}"
18+
region_name: "{{ os_container_clusters_region | default(omit) }}"
1919
auth_type: "{{ os_container_clusters_auth_type }}"
2020
cacert: "{{ os_container_clusters_cacert | default(omit) }}"
2121
interface: "{{ os_container_clusters_interface | default(omit, true) }}"

roles/os_deploy_templates/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ the `auth_type` argument of `openstack.cloud` Ansible modules.
2727
`os_deploy_templates_auth` is a dict containing authentication information
2828
compatible with the `auth` argument of `openstack.cloud` Ansible modules.
2929

30-
`os_deploy_templates_region_name` is an optional name of an OpenStack region.
30+
`os_deploy_templates_region` is an optional name of an OpenStack region.
3131

3232
`os_deploy_templates_cacert` is an optional path to a CA certificate bundle.
3333

roles/os_deploy_templates/tasks/deploy_templates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
openstack.cloud.baremetal_deploy_template:
44
auth_type: "{{ os_deploy_templates_auth_type }}"
55
auth: "{{ os_deploy_templates_auth }}"
6-
region_name: "{{ os_deploy_templates_region_name | default(omit) }}"
6+
region_name: "{{ os_deploy_templates_region | default(omit) }}"
77
cacert: "{{ os_deploy_templates_cacert | default(omit) }}"
88
interface: "{{ os_deploy_templates_interface | default(omit, true) }}"
99
name: "{{ item.name | default(omit) }}"

roles/os_flavors/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ the `auth_type` argument of `openstack.cloud` Ansible modules.
2121
`os_flavors_auth` is a dict containing authentication information
2222
compatible with the `auth` argument of `openstack.cloud` Ansible modules.
2323

24-
`os_flavors_region_name` is an optional name of an OpenStack region.
24+
`os_flavors_region` is an optional name of an OpenStack region.
2525

2626
`os_flavors_cacert` is an optional path to a CA certificate bundle.
2727

roles/os_flavors/tasks/flavors.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
openstack.cloud.compute_flavor:
44
auth_type: "{{ os_flavors_auth_type }}"
55
auth: "{{ os_flavors_auth }}"
6-
region_name: "{{ os_flavors_region_name | default(omit) }}"
6+
region_name: "{{ os_flavors_region | default(omit) }}"
77
cacert: "{{ os_flavors_cacert | default(omit) }}"
88
interface: "{{ os_flavors_interface | default(omit, true) }}"
99
name: "{{ item.name }}"
@@ -23,7 +23,7 @@
2323
openstack.cloud.compute_flavor_access:
2424
auth_type: "{{ os_flavors_auth_type }}"
2525
auth: "{{ os_flavors_auth }}"
26-
region_name: "{{ os_flavors_region_name | default(omit) }}"
26+
region_name: "{{ os_flavors_region | default(omit) }}"
2727
cacert: "{{ os_flavors_cacert | default(omit) }}"
2828
interface: "{{ os_flavors_interface | default(omit, true) }}"
2929
name: "{{ item.0.name }}"

roles/os_host_aggregates/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ virtualenv.
2121
`os_host_aggregates_auth` is a dict containing authentication information
2222
compatible with the `auth` argument of `openstack.cloud` Ansible modules.
2323

24-
`os_host_aggregates_region_name` is an optional name of an OpenStack region.
24+
`os_host_aggregates_region` is an optional name of an OpenStack region.
2525

2626
`os_host_aggregates_cacert` is an optional path to a CA certificate bundle.
2727

roles/os_host_aggregates/tasks/host-aggregates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
openstack.cloud.host_aggregate:
44
auth_type: "{{ os_host_aggregates_auth_type }}"
55
auth: "{{ os_host_aggregates_auth }}"
6-
region_name: "{{ os_host_aggregates_region_name | default(omit) }}"
6+
region_name: "{{ os_host_aggregates_region | default(omit) }}"
77
cacert: "{{ os_host_aggregates_cacert | default(omit) }}"
88
interface: "{{ os_host_aggregates_interface | default(omit, true) }}"
99
name: "{{ item.name }}"

roles/os_networks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Role Variables
2121
`os_networks_auth` is a dict containing authentication information
2222
compatible with the `auth` argument of `openstack.cloud` Ansible modules.
2323

24-
`os_networks_region_name` is an optional name of an OpenStack region.
24+
`os_networks_region` is an optional name of an OpenStack region.
2525

2626
`os_networks_cacert` is an optional path to a CA certificate bundle.
2727

roles/os_networks/tasks/networks.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
openstack.cloud.router:
44
auth_type: "{{ os_networks_auth_type }}"
55
auth: "{{ os_networks_auth }}"
6-
region_name: "{{ os_networks_region_name | default(omit) }}"
6+
region_name: "{{ os_networks_region | default(omit) }}"
77
cacert: "{{ os_networks_cacert | default(omit) }}"
88
cloud: "{{ os_networks_cloud | default(omit) }}"
99
interface: "{{ os_networks_interface | default(omit, true) }}"
@@ -17,7 +17,7 @@
1717
openstack.cloud.network:
1818
auth_type: "{{ os_networks_auth_type }}"
1919
auth: "{{ os_networks_auth }}"
20-
region_name: "{{ os_networks_region_name | default(omit) }}"
20+
region_name: "{{ os_networks_region | default(omit) }}"
2121
cacert: "{{ os_networks_cacert | default(omit) }}"
2222
cloud: "{{ os_networks_cloud | default(omit) }}"
2323
interface: "{{ os_networks_interface | default(omit, true) }}"
@@ -38,7 +38,7 @@
3838
openstack.cloud.subnet:
3939
auth_type: "{{ os_networks_auth_type }}"
4040
auth: "{{ os_networks_auth }}"
41-
region_name: "{{ os_networks_region_name | default(omit) }}"
41+
region_name: "{{ os_networks_region | default(omit) }}"
4242
cacert: "{{ os_networks_cacert | default(omit) }}"
4343
cloud: "{{ os_networks_cloud | default(omit) }}"
4444
interface: "{{ os_networks_interface | default(omit, true) }}"
@@ -75,7 +75,7 @@
7575
# openstack.cloud.router:
7676
# auth_type: "{{ os_networks_auth_type }}"
7777
# auth: "{{ os_networks_auth }}"
78-
# region_name: "{{ os_networks_region_name | default(omit) }}"
78+
# region_name: "{{ os_networks_region | default(omit) }}"
7979
# cacert: "{{ os_networks_cacert | default(omit) }}"
8080
# cloud: "{{ os_networks_cloud | default(omit) }}"
8181
# interface: "{{ os_networks_interface | default(omit, true) }}"
@@ -104,7 +104,7 @@
104104
openstack.cloud.security_group:
105105
auth_type: "{{ os_networks_auth_type }}"
106106
auth: "{{ os_networks_auth }}"
107-
region_name: "{{ os_networks_region_name | default(omit) }}"
107+
region_name: "{{ os_networks_region | default(omit) }}"
108108
cacert: "{{ os_networks_cacert | default(omit) }}"
109109
cloud: "{{ os_networks_cloud | default(omit) }}"
110110
interface: "{{ os_networks_interface | default(omit, true) }}"
@@ -119,7 +119,7 @@
119119
openstack.cloud.security_group_rule:
120120
auth_type: "{{ os_networks_auth_type }}"
121121
auth: "{{ os_networks_auth }}"
122-
region_name: "{{ os_networks_region_name | default(omit) }}"
122+
region_name: "{{ os_networks_region | default(omit) }}"
123123
cacert: "{{ os_networks_cacert | default(omit) }}"
124124
cloud: "{{ os_networks_cloud | default(omit) }}"
125125
interface: "{{ os_networks_interface | default(omit, true) }}"

0 commit comments

Comments
 (0)