docs: Correct typo in variable name

This commit addresses a typo in the documentation where the variable
"neutron_physical_network" was incorrectly used. The correct variable
name is "neutron_physical_networks", which reflects the actual value
used in the code.

Closes-Bug: #2088062
Change-Id: I5d4a7895d54aebcf0612e72d315defeda37bb178
This commit is contained in:
amithkotu 2025-02-18 22:10:53 -05:00
parent 0544cbc5ce
commit eb3b79460a

@ -75,7 +75,7 @@ provisioning, controllers might have access to two physical networks:
neutron_external_interface: "eth1,eth2"
neutron_bridge_name: "br-ex1,br-ex2"
neutron_physical_network: "physnet1,physnet2"
neutron_physical_networks: "physnet1,physnet2"
While compute nodes have access only to ``physnet2``.
@ -83,7 +83,7 @@ While compute nodes have access only to ``physnet2``.
neutron_external_interface: "eth1"
neutron_bridge_name: "br-ex1"
neutron_physical_network: "physnet2"
neutron_physical_networks: "physnet2"
Example: shared interface
-------------------------