aboutsummaryrefslogtreecommitdiffstats
path: root/network/ports/external.yaml
blob: c33643e75004a1d2ab958a9d0cc9f64e350cce8c (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.
heat_template_version: ocata

description: >
  Creates a port on the external network. The IP address will be chosen
  automatically if FixedIPs is empty.

parameters:
  ExternalNetName:
    description: Name of the external neutron network
    default: external
    type: string
  PortName:
    description: Name of the port
    default: ''
    type: string
  ControlPlaneIP: # Here for compatibility with noop.yaml
    description: IP address on the control plane
    default: ''
    type: string
  ControlPlaneNetwork: # Here for compatibility with ctlplane_vip.yaml
    description: The name of the undercloud Neutron control plane
    default: ctlplane
    type: string
  FixedIPs:
    description: >
        Control the IP allocation for the VIP port. E.g.
        [{'ip_address':'1.2.3.4'}]
    default: []
    type: json
  IPPool: # Here for compatibility with from_pool.yaml
    default: {}
    type: json
  NodeIndex: # Here for compatibility with from_pool.yaml
    default: 0
    type: number

resources:

  ExternalPort:
    type: OS::Neutron::Port
    properties:
      network: {get_param: ExternalNetName}
      name: {get_param: PortName}
      fixed_ips: {get_param: FixedIPs}
      replacement_policy: AUTO

outputs:
  ip_address:
    description: external network IP
    value: {get_attr: [ExternalPort, fixed_ips, 0, ip_address]}
  ip_address_uri:
    description: external network IP (for compatibility with external_v6.yaml)
    value: {get_attr: [ExternalPort, fixed_ips, 0, ip_address]}
  ip_subnet:
    description: IP/Subnet CIDR for the external network IP
    value:
          list_join:
            - ''
            - - {get_attr: [ExternalPort, fixed_ips, 0, ip_address]}
              - '/'
              - {str_split: ['/', {get_attr: [ExternalPort, subnets, 0, cidr]}, 1]}