0

user_data を、comma_delimited_list のリソース グループ内の動的な値に置き換える必要があります。

%index% が機能していません。

heat_template_version: 2015-10-15

test_parameter:
type: comma_delimited_list
label: test param  list
description: test descr
default: 'test_param_1,test_param_2'
.......
...... 

type: OS::Heat::ResourceGroup
properties:
.........
.........
user_data:
    str_replace:
      template: |
        get the local value of the instance : $val
      params:
        $val: { get_param: [ test_parameter, %index% ] } 
        
        

HEAT-user_data で json/list 値をテンプレートに渡す方法

4

1 に答える 1