Support more user variables in the OpenStack builder
This commit is contained in:
parent
92d58a5ede
commit
04d1bc67ff
|
@ -83,8 +83,12 @@ func (c *AccessConfig) Prepare(t *packer.ConfigTemplate) []error {
|
||||||
templates := map[string]*string{
|
templates := map[string]*string{
|
||||||
"username": &c.Username,
|
"username": &c.Username,
|
||||||
"password": &c.Password,
|
"password": &c.Password,
|
||||||
"apiKey": &c.ApiKey,
|
"api_key": &c.ApiKey,
|
||||||
"provider": &c.Provider,
|
"provider": &c.Provider,
|
||||||
|
"project": &c.Project,
|
||||||
|
"tenant_id": &c.TenantId,
|
||||||
|
"region": &c.RawRegion,
|
||||||
|
"proxy_url": &c.ProxyUrl,
|
||||||
}
|
}
|
||||||
|
|
||||||
errs := make([]error, 0)
|
errs := make([]error, 0)
|
||||||
|
|
Loading…
Reference in New Issue