Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Retrieve tokens from secrets management #9

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

mikefrobbins
Copy link

Convert to retrieving tokens from secrets management instead of using environment variables. Create a vault unless you already have one and add the tokens to it before attempting to use the updated module.

Install-Module -Name Microsoft.PowerShell.SecretManagement, Microsoft.PowerShell.SecretStore
Register-SecretVault -Name SecretStore -ModuleName Microsoft.PowerShell.SecretStore -DefaultVault
$GITHUB_TOKEN = Read-Host -Prompt 'Enter token' -AsSecureString
Set-Secret -Name GITHUB_TOKEN -SecureStringSecret $GITHUB_TOKEN
$CLDEVOPS_TOKEN = Read-Host -Prompt 'Enter token' -AsSecureString
Set-Secret -Name CLDEVOPS_TOKEN -SecureStringSecret $CLDEVOPS_TOKEN

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant