vagrant-openstack-provider
vagrant-openstack-provider copied to clipboard
Allow heat parameters to be set in the stack
os.stacks = [{
name: 'mystack',
template: '/path/to/my/template.yml',
parameters: {
router_id: '1234'
}
}]
+1
+1 ... with this feature vagrant would be perfect to test heat stacks using testinfra ...
or even
os.stacks = [{
name: 'mystack',
template: ['/path/to/my/template.yml', '/path/to/my/parameters.yaml`]
}]
since paramters can be supplied in the form of a yaml to openstack stack create -t template.yaml -t parameters.yaml <stack name>