File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -616,7 +616,7 @@ type Config struct {
616616 // `custom_resource_build_prefix` + resourcetype + 5 character random alphanumeric string
617617 //
618618 // You can also set this via the environment variable `PACKER_AZURE_CUSTOM_RESOURCE_BUILD_PREFIX`.
619- // If both the config field and the environment variable are present, the config field takes precedence.
619+ // If both the config field and the environment variable are present, the config field takes precedence.
620620 CustomResourcePrefix string `mapstructure:"custom_resource_build_prefix" required:"false"`
621621
622622 // Specify a license type for the build VM to enable Azure Hybrid Benefit. If not set, Pay-As-You-Go license
@@ -1434,7 +1434,7 @@ func assertRequiredParametersSet(c *Config, errs *packersdk.MultiError) {
14341434 }
14351435 }
14361436
1437- if c .CustomResourcePrefix == "" {
1437+ if c .CustomResourcePrefix == "" {
14381438 val , ok := os .LookupEnv ("PACKER_AZURE_CUSTOM_RESOURCE_BUILD_PREFIX" )
14391439 if ok {
14401440 c .CustomResourcePrefix = val
You can’t perform that action at this time.
0 commit comments