v1 crud secrets complete

This commit is contained in:
Maidul Islam
2023-01-03 16:09:47 -05:00
parent daf8a73529
commit 7e71e3ca57
4 changed files with 87 additions and 16 deletions

View File

@@ -8,7 +8,7 @@ func PrintAllSecretDetails(secrets []models.SingleEnvironmentVariable) {
rows = append(rows, []string{secret.Key, secret.Value, secret.Type})
}
headers := []string{"Secret name", "Secret vaule", "Secret type"}
headers := []string{"SECRET NAME", "SECRET VALUE", "SECRET TYPE"}
Table(headers, rows)
}