Merge pull request #1887 from jenspinney/process-openstack-config-values

Support user variables for missing OpenStack string config options

Fixes #1506
This commit is contained in:
Ross Smith II 2015-02-16 09:59:48 -08:00
commit f14d455d68
1 changed files with 7 additions and 4 deletions

View File

@ -72,6 +72,9 @@ func (c *RunConfig) Prepare(t *packer.ConfigTemplate) []error {
"ssh_timeout": &c.RawSSHTimeout,
"ssh_username": &c.SSHUsername,
"source_image": &c.SourceImage,
"openstack_provider": &c.OpenstackProvider,
"floating_ip_pool": &c.FloatingIpPool,
"floating_ip": &c.FloatingIp,
}
for n, ptr := range templates {