You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 25, 2021. It is now read-only.
The example "control" security group is missing output.
https://github.com/F5Networks/f5-openstack-heat/blob/liberty/unsupported/ve/common/bigip_control_security_group.yaml
ex.
outputs:
control_security_group_id:
description: Get resource id of this security group
value: { get_resource: bigip_control_security_group }
So references to it in stacks fail.
mgmt_port:
type: OS::Neutron::Port
properties:
network: {get_param: mgmt_network}
security_groups: [{ get_attr: [bigip_mgmt_security_group, mgmt_security_group_id] }]
network_1_port:
type: OS::Neutron::Port
properties:
network: {get_param: network_1}
security_groups: [{ get_attr: [bigip_data_security_group, data_security_group_id] }]
ha_port:
type: OS::Neutron::Port
properties:
network: {get_param: ha_network}
security_groups: [{ get_attr: [bigip_control_security_group, control_security_group_id] }]