$ pr -n yaml 2018-06-01 15:17 yaml Page 1 1 parameters: 2 oam_net_id: 3 type: string 4 description: Neutron UUID for an OAM network 5 6 db_oam_ip_0: 7 type: string 8 description: Fixed IPv4 assignment for db VM 0 on the OAM network 9 10 db_oam_ip_1: 11 type: string 12 description: Fixed IPv4 assignment for db VM 1 on the OAM network 13 14 db_oam_v6_ip_0: 15 type: string 16 description: Fixed IPv6 assignment for db VM 0 on the OAM network 17 18 db_oam_v6_ip_1: 19 type: string 20 description: Fixed IPv6 assignment for db VM 1 on the OAM network 21 22 resources: 23 db_0_port_1: 24 type: OS::Neutron::Port 25 properties: 26 network: { get_param: oam_net_id } 27 fixed_ips: [ { “ip_address”: {get_param: db_oam_ip_0}}, {“ip_address”: {get_param: db_oam_v6_ip_0 ]}}] 28 29 db_1_port_1: 30 type: OS::Neutron::Port 31 properties: 32 network: { get_param: oam_net_id } 33 fixed_ips: 34 - “ip_address”: {get_param: db_oam_ip_1}}] 35 - “ip_address”: {get_param: db_oam_v6_ip_1}}] ------------------------------------------------------------------------ $ yamllint yaml yaml 1:1 warning missing document start "---" (document-start) 26:20 error too many spaces inside braces (braces) 26:42 error too many spaces inside braces (braces) 27:22 error too many spaces inside brackets (brackets) 27:24 error too many spaces inside braces (braces) 27:107 error too many spaces inside brackets (brackets) 27:81 error line too long (111 > 80 characters) (line-length) 29:4 error wrong indentation: expected 9 but found 3 (indentation) 29:15 error cannot infer indentation: unexpected token (indentation) 27:108 error syntax error: expected ',' or '}', but got ']'