user_data
スクリプトを Python Heat-API クライアントに渡す方法。
作成中にインスタンスに渡したいファイルに次のスクリプトがありますが、user_data
それを実行する方法がわかりません。Heat API を使用してインスタンスを作成しています。以下のコードは、なしの heat テンプレート ファイルでスタックを作成しますuser_data
。任意のポインタをいただければ幸いです。
env.yml
user_data:
#!/bin/bash
rpm install -y git vim
template_file = 'heattemplate.yaml'
template = open(template_file, 'r')
stack = heat.stacks.create(stack_name='Tutorial', template=template.read(), parameters={})