update datatype for "OctaviaFlavorId"

Currently, heat templates will expect “OctaviaFlavorId” value to
"number". But, if a user specifies alphanum value, the deployment
fails. Hence, updating datatype of "OctaviaFlavorId" to "string"
Closes-Bug: #1810415

Change-Id: I9f1c8c5df61f3070a3df404e9f726ed40f138431
(cherry picked from commit 38f752255c)
This commit is contained in:
Pratik Bandarkar 2019-01-03 16:34:31 +00:00 committed by Gregory Thiemonge
parent 59a5f8338f
commit b30d391bb7
1 changed files with 2 additions and 2 deletions

View File

@ -47,10 +47,10 @@ parameters:
description: Load balancer topology configuration.
type: string
OctaviaFlavorId:
default: 65
default: '65'
description: Nova flavor ID to be used when creating the nova flavor for
amphora.
type: number
type: string
conditions:
octavia_topology_unset: {equals : [{get_param: OctaviaLoadBalancerTopology}, ""]}