From 48d6ad9dc4c92888cf2145f3671d6a61021b4ce6 Mon Sep 17 00:00:00 2001 From: Tony Guimelli Date: Thu, 7 Sep 2023 15:33:56 -0400 Subject: [PATCH] Add files via upload --- PSKubernetesSecretsManagement.psd1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PSKubernetesSecretsManagement.psd1 b/PSKubernetesSecretsManagement.psd1 index e23466a..a140213 100644 --- a/PSKubernetesSecretsManagement.psd1 +++ b/PSKubernetesSecretsManagement.psd1 @@ -12,7 +12,7 @@ RootModule = '.\PSKubernetesSecretsManagement.psm1' # Version number of this module. - ModuleVersion = '0.6.1' + ModuleVersion = '0.7.0' # Compatibility CompatiblePSEditions = 'Desktop', 'Core' @@ -30,10 +30,10 @@ Description = 'This PowerShell module contains functions that facilitate the creation, rotation, auditing, and viewing the metadata of Kubernetes secrets.' # Functions to export from this module - FunctionsToExport = 'Get-KubernetesSecretMetadata', 'New-KubernetesEphemeralSecret', 'Set-KubernetesSecretData' + FunctionsToExport = 'Get-KubernetesSecretMetadata', 'New-KubernetesEphemeralSecret', 'Set-KubernetesSecretData', 'New-KubernetesSecretData' # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. - AliasesToExport = 'gksm', 'gksd', 'nkes', 'sksd' + AliasesToExport = 'gksm', 'gksd', 'nkes', 'sksd', 'nksd' # List of all files packaged with this module FileList = 'PSKubernetesSecretsManagement.psd1', 'PSKubernetesSecretsManagement.psm1'