Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flamencist/genericconnectionviewer
This task sets the url/username/password stored on a generic connection.
https://github.com/flamencist/genericconnectionviewer
azure-pipelines generic-connection service-connection
Last synced: 4 days ago
JSON representation
This task sets the url/username/password stored on a generic connection.
- Host: GitHub
- URL: https://github.com/flamencist/genericconnectionviewer
- Owner: flamencist
- Created: 2020-01-23T16:42:07.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-07T20:15:06.000Z (over 1 year ago)
- Last Synced: 2023-10-20T19:51:32.949Z (about 1 year ago)
- Topics: azure-pipelines, generic-connection, service-connection
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=achermyanin.credentials-viewer
- Size: 96.7 KB
- Stars: 12
- Watchers: 1
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GenericConnectionViewer
Help support the project:
or Star project.
This task sets the url/username/password stored on a generic connection. This task can be used to centrally store a url/username/password and pass them to tasks that require a username/password without having to have the credentials replicated all over build/release definitions, with this task you can have single copy which can be centrally managed and change it centrally.
This task has three parameters:
Connection The connection
Url variable name
Username variable name
Password variable name
In your can register service endpoints to store your reusable url/username/password to use in other tasks.You need to create a Credential endpoint to store the user name and password.
Marketplace: https://marketplace.visualstudio.com/items?itemName=achermyanin.credentials-viewer
Example Pipeline Usage:
```
pool:
vmImage: 'ubuntu-latest'steps:
- task: GenericConnectionViewer@0
inputs:
credentials: ''
url: 'url'
username: 'username'
password: 'password'- script: |
echo "url=$(url)"
echo "username=$(username)"
echo "password=$(password)"
```