aboutsummaryrefslogtreecommitdiffstats
path: root/deployed-server/ctlplane-port.yaml
blob: 8cd22ca0eaffd98290949f2a481e9390d223e8b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
heat_template_version: pike

parameters:
  network:
    type: string
    default: ctlplane
  name:
    type: string
  replacement_policy:
    type: string
    default: AUTO

resources:

  ControlPlanePort:
    type: OS::Neutron::Port
    properties:
      network: ctlplane
      name:
        list_join:
          - '-'
          - - {get_param: name}
            - port
      replacement_policy: AUTO

outputs:
  fixed_ips:
    value: {get_attr: [ControlPlanePort, fixed_ips]}