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

update vss-extension to include Azure DevOps OICD #510

Draft
wants to merge 1 commit into
base: v2
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
126 changes: 125 additions & 1 deletion vss-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1,
"public": true,
"id": "jfrog-azure-devops-extension",
"version": "2.10.1",
"version": "2.11.0",
"name": "JFrog",
"description": "Integrate your JFrog Platform with Visual Studio Team Services.",
"publisher": "JFrog",
Expand Down Expand Up @@ -149,6 +149,37 @@
}
}
]
},
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-none",
"displayName": "Azure DevOps OIDC (Services only)",
"properties": {
"isVerifiable": "False"
},
"inputDescriptors": [
{
"id": "providerName",
"name": "Provider Name",
"description": "The OIDC \"Provider Name\" configured in JFrog Platform. The OIDC provider & token claim details are provided in the build log output of any task using this connection.",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "authServer",
"name": "Auth Server",
"description": "The access token will be obtained from this server but operations will use the server URL from above. May be required if using edge nodes.",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": false,
"dataType": "string"
}
}
]
}
]
}
Expand Down Expand Up @@ -234,6 +265,37 @@
}
}
]
},
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-none",
"displayName": "Azure DevOps OIDC (Services only)",
"properties": {
"isVerifiable": "False"
},
"inputDescriptors": [
{
"id": "providerName",
"name": "Provider Name",
"description": "The OIDC \"Provider Name\" configured in JFrog Platform. The OIDC provider & token claim details are provided in the build log output of any task using this connection.",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "authServer",
"name": "Auth Server",
"description": "The access token will be obtained from this server but operations will use the server URL from above. May be required if using edge nodes.",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": false,
"dataType": "string"
}
}
]
}
]
}
Expand Down Expand Up @@ -309,6 +371,37 @@
}
}
]
},
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-none",
"displayName": "Azure DevOps OIDC (Services only)",
"properties": {
"isVerifiable": "False"
},
"inputDescriptors": [
{
"id": "providerName",
"name": "Provider Name",
"description": "The OIDC \"Provider Name\" configured in JFrog Platform. The OIDC provider & token claim details are provided in the build log output of any task using this connection.",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "authServer",
"name": "Auth Server",
"description": "The access token will be obtained from this server but operations will use the server URL from above. May be required if using edge nodes.",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": false,
"dataType": "string"
}
}
]
}
]
}
Expand Down Expand Up @@ -384,6 +477,37 @@
}
}
]
},
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-none",
"displayName": "Azure DevOps OIDC (Services only)",
"properties": {
"isVerifiable": "False"
},
"inputDescriptors": [
{
"id": "providerName",
"name": "Provider Name",
"description": "The OIDC \"Provider Name\" configured in JFrog Platform. The OIDC provider & token claim details are provided in the build log output of any task using this connection.",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "authServer",
"name": "Auth Server",
"description": "The access token will be obtained from this server but operations will use the server URL from above. May be required if using edge nodes.",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": false,
"dataType": "string"
}
}
]
}
]
}
Expand Down
Loading