PSTerraformEnv.psd1
# # Module manifest for module 'PSTerraformEnv' # # Generated by: Drew Adams <druonysus@opensuse.org> # # Generated on: 7/29/2021 # @{ # Script module or binary module file associated with this manifest. RootModule = 'PSTerraformEnv.psm1' # Version number of this module. ModuleVersion = '0.0.3' # ID used to uniquely identify this module GUID = '6a58a2cb-b9fa-470f-b2a1-96b0f79b55f3' # Author of this module Author = 'Drew Adams' # Copyright statement for this module Copyright = '(c) 2021 Drew Adams. All rights reserved.' # Description of the functionality provided by this module Description = 'A Terraform version manager: install, & swap between versions' # Minimum version of PowerShell required by this module PowerShellVersion = '7.1' # Variables to export from this module VariablesToExport = '*' # Functions to export from this module FunctionsToExport = "Get-InstalledTerraformVersion", "Install-TerraformVersion", "Switch-TerraformVersion", "Find-TerraformVersion", "Remove-TerraformVersion" AliasesToExport = "gitfv", "itfv", "swtfv", "fdtfv", "rtfv", "tf", "terraform" # Processor architecture (None, X86, Amd64) required by this module ProcessorArchitecture = 'None' # List of all modules packaged with this module # ModuleList = @() # List of all files packaged with this module # FileList = @() # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @("terraform") # A URL to the license for this module. LicenseUri = 'https://gitlab.com/druonysus/psterraformenv/-/blob/master/LICENSE.txt' # A URL to the main website for this project. ProjectUri = 'https://gitlab.com/druonysus/psterraformenv' # A URL to an icon representing this module. IconUri = 'https://clipground.com/images/terraform-logo-8.png' # ReleaseNotes of this module # ReleaseNotes = '' # Prerelease string of this module # Prerelease = '' # Flag to indicate whether the module requires explicit user acceptance for install/update/save # RequireLicenseAcceptance = $false # External dependent modules of this module # ExternalModuleDependencies = @() } # End of PSData hashtable } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' } |