diff --git a/defaults/main.yml b/defaults/main.yml index 2f2f29e7..57b242ca 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -141,6 +141,7 @@ horizon_launch_instance_ng: False ## Neutron features to enable horizon_enable_neutron_lbaas: False +horizon_enable_neutron_fwaas: False ## Swift horizon_swift_file_transfer_chunk_size: 524288 diff --git a/templates/horizon_local_settings.py.j2 b/templates/horizon_local_settings.py.j2 index 75ee0898..d6495661 100644 --- a/templates/horizon_local_settings.py.j2 +++ b/templates/horizon_local_settings.py.j2 @@ -270,7 +270,7 @@ OPENSTACK_NEUTRON_NETWORK = { 'enable_distributed_router': False, 'enable_ha_router': False, 'enable_lb': {{ horizon_enable_neutron_lbaas | bool }}, - 'enable_firewall': False, + 'enable_firewall': {{ horizon_enable_neutron_fwaas | bool }}, 'enable_vpn': False, 'enable_fip_topology_check': True,