247c2d02d2
OVB 2.0 won't support clouds that lack the port-security extension, so these are no longer needed.
31 lines
494 B
YAML
31 lines
494 B
YAML
heat_template_version: 2015-10-15
|
|
|
|
parameters:
|
|
|
|
baremetal_prefix:
|
|
type: string
|
|
|
|
networks:
|
|
type: json
|
|
|
|
suffix:
|
|
type: string
|
|
|
|
resources:
|
|
|
|
provision_port:
|
|
type: OS::Neutron::Port
|
|
properties:
|
|
name:
|
|
list_join:
|
|
- ''
|
|
- - {get_param: baremetal_prefix}
|
|
- {get_param: suffix}
|
|
network: {get_param: [networks, provision]}
|
|
port_security_enabled: False
|
|
|
|
outputs:
|
|
ports:
|
|
value:
|
|
- {port: {get_resource: provision_port}}
|