Skip to content

Commit 3cb0c6f

Browse files
committed
fix order
1 parent 3f1e76a commit 3cb0c6f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,10 +458,10 @@ func getKeyGroupsFromCreationRule(cRule *creationRule, kmsEncryptionContext map[
458458
for _, k := range vaultKeys {
459459
keyGroup = append(keyGroup, k)
460460
}
461-
groups = append(groups, keyGroup)
462461
for _, p := range cRule.Plugin {
463462
keyGroup = append(keyGroup, plugin.NewMasterKey(p.BinaryName, p.Config))
464463
}
464+
groups = append(groups, keyGroup)
465465
}
466466
return groups, nil
467467
}

0 commit comments

Comments
 (0)