I use %index%
in OS::Heat::ResourceGroup
and it starts with a 0 value.
I want it to start with the value of 1. How to do it?
resources:
server_group:
type: OS::Heat::ResourceGroup
properties:
count: 3
resource_def:
type: OS::Nova::Server
name: { get_param: [ server_names, '%index%' ] }
I tried with '%index% + 1'
but it did not work:
Error return: invalid literal for int() with base 10: '0 + 1'
You can achieve this using
yaql
and a template composition. Here is the proof of concept:First create a template for the resource you wish to create, I called it
index.yaml
:In your concrete case, you would have your
OS::Nova::Server
in here.Use this template from your main template (I called it
group.yaml
), creating the group with the incremented index:Create the stack from this:
And you will see the list of values, starting at
1
rather than0
:Why the template composition, you ask? Initially, I expected this to work like this:
It does not, however, as the yaql appears to be evaluated before the index value is filled:
So the template composition is a workaround.