在Heat模板的bash脚本中,是否可以使用该模板中的参数值?
答案 0 :(得分:0)
是的,根据Heat Orchestration Template specification,您可以使用str_replace
功能完成此操作。他们举例说明使用str_replace
和get_param
在bash脚本中使用参数值DBRootPassword
:
parameters:
DBRootPassword:
type: string
label: Database Password
description: Root password for MySQL
hidden: true
resources:
my_instance:
type: OS::Nova::Server
properties:
# general properties ...
user_data:
str_replace:
template: |
#!/bin/bash
echo "Hello world"
echo "Setting MySQL root password"
mysqladmin -u root password $db_rootpassword
# do more things ...
params:
$db_rootpassword: { get_param: DBRootPassword }
params
中的每个键都会在template
中替换为其值。由于$db_rootpassword
的值设置为get_param
的结果,这意味着在使用$db_rootpassword
的地方将参数传递到bash脚本。