From cd1f1165ed56f2e0944903299c359c6e06d534c7 Mon Sep 17 00:00:00 2001 From: Kevin Bulebush Date: Sat, 9 Feb 2019 22:51:08 -0500 Subject: [PATCH] Support reading app creds from packer config --- builder/openstack/access_config.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/builder/openstack/access_config.go b/builder/openstack/access_config.go index 94a7e4523..ad63a396c 100644 --- a/builder/openstack/access_config.go +++ b/builder/openstack/access_config.go @@ -129,6 +129,9 @@ func (c *AccessConfig) Prepare(ctx *interpolate.Context) []error { {&c.DomainID, &ao.DomainID}, {&c.DomainName, &ao.DomainName}, {&c.Token, &ao.TokenID}, + {&c.ApplicationCredentialName, &ao.ApplicationCredentialName}, + {&c.ApplicationCredentialID, &ao.ApplicationCredentialID}, + {&c.ApplicationCredentialSecret, &ao.ApplicationCredentialSecret}, } for _, s := range overrides { if *s.From != "" {