File tree 1 file changed +10
-6
lines changed
1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -236,18 +236,22 @@ func validateMissingS3Options(options *types.Options) []string {
236
236
missing = append (missing , "AWS_TEMPLATE_BUCKET" )
237
237
}
238
238
if options .AwsProfile == "" {
239
+ var missingCreds []string
239
240
if options .AwsAccessKey == "" {
240
- missing = append (missing , "AWS_ACCESS_KEY" )
241
+ missingCreds = append (missingCreds , "AWS_ACCESS_KEY" )
241
242
}
242
243
if options .AwsSecretKey == "" {
243
- missing = append (missing , "AWS_SECRET_KEY" )
244
+ missingCreds = append (missingCreds , "AWS_SECRET_KEY" )
244
245
}
245
246
if options .AwsRegion == "" {
246
- missing = append (missing , "AWS_REGION" )
247
+ missingCreds = append (missingCreds , "AWS_REGION" )
248
+ }
249
+
250
+ missing = append (missing , missingCreds ... )
251
+
252
+ if len (missingCreds ) > 0 {
253
+ missing = append (missing , "AWS_PROFILE" )
247
254
}
248
- }
249
- if (options .AwsAccessKey == "" || options .AwsSecretKey == "" || options .AwsRegion == "" ) && options .AwsProfile == "" {
250
- missing = append (missing , "AWS_PROFILE" )
251
255
}
252
256
253
257
return missing
You can’t perform that action at this time.
0 commit comments