
This PR updates the yaml linter configuration to align it with what we have in the osh-infra repo. Change-Id: I3585fdc6663b2ae7bfb5c1d8a13672ac3055bf86
31 lines
596 B
YAML
31 lines
596 B
YAML
---
|
|
heat_template_version: 2016-10-14
|
|
|
|
parameters:
|
|
subnet_pool_name:
|
|
type: string
|
|
default: shared-default-subnetpool
|
|
|
|
subnet_pool_prefixes:
|
|
type: comma_delimited_list
|
|
default:
|
|
- 192.168.128.0/20
|
|
|
|
subnet_pool_default_prefix_length:
|
|
type: number
|
|
default: 24
|
|
|
|
resources:
|
|
public_net:
|
|
type: OS::Neutron::SubnetPool
|
|
properties:
|
|
name:
|
|
get_param: subnet_pool_name
|
|
shared: true
|
|
is_default: true
|
|
default_prefixlen:
|
|
get_param: subnet_pool_default_prefix_length
|
|
prefixes:
|
|
get_param: subnet_pool_prefixes
|
|
...
|