vagrant-openstack-provider icon indicating copy to clipboard operation
vagrant-openstack-provider copied to clipboard

Allow heat parameters to be set in the stack

Open julienvey opened this issue 10 years ago • 3 comments

os.stacks = [{
  name: 'mystack',
  template: '/path/to/my/template.yml',             
  parameters: {
    router_id: '1234'
  }
}]

julienvey avatar Nov 20 '14 16:11 julienvey

+1

GonZo avatar Mar 03 '15 17:03 GonZo

+1 ... with this feature vagrant would be perfect to test heat stacks using testinfra ...

stefreak avatar Nov 11 '16 12:11 stefreak

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>

maglo avatar Feb 23 '17 17:02 maglo