Questions tagged [serviceconnection]

86 questions
0
votes
1 answer

How can a bash script task in Azure DevOps Pipelines access Service Connection?

I am using 'run a bash script' task in my azure yaml pipeline. I need to access service connection ( docker connection) within the script so I can login to docker & jfrog and logout multiple times ( without having to use variables or variable…
0
votes
1 answer

Connecting to Azure Subscription from Azure Pipeline without Service Connection

From Visual Studio Code or Windows Powershell, I can execute the required Az-Cli/Powershell commands and login to my Azure subscriptions without any problem whatsoever. I'm desperate to replicate this in my Azure Pipeline without the use of a…
0
votes
2 answers

How to create Azure devops kubernetes service connection for to access private AKS cluster?

Creating a service connection to access non-private AKS cluster is straight forward, however if i want to create service connection for private AKS cluster is it possible from Azure Devops?
Shruthi Bhaskar
  • 1,212
  • 6
  • 20
  • 32
0
votes
1 answer

Azure DevOps Service Connection - Azure Resource Manager using service principal (manual) with Key Vault Secret values

I have created Azure Key Vault and then created secret with Service Principal Client Secret ID value into it. Next, I’m trying to create Azure Resource Manager Service Connection (Manual Type) in Azure DevOps. In that I want to read the Client…
Pradeep
  • 5,101
  • 14
  • 68
  • 140
0
votes
1 answer

Azure DevOps API creates service connection without verifying hence getting the error failed to query service connection api while using

Am able to create a new service endpoint using Create Service EndPoint And also able to grant it with Pipeline Permissions using below curl --request PATCH -H "Content-Type: application/json" -u $user:$token -d "@newpatch.json"…
0
votes
0 answers

Create custom Azure DevOps Service Connection for rest api

I have a REST API on the internet that is secured with Azure AD and a required header (custom apikey). You can call this API in example with postman using the client credentials flow. This all works fine. I'm now developing a custom Azure DevOps…
0
votes
1 answer

How to use Azure pipelines for private pods?

I have a collection of private Cocoapods libraries hosted on Github (private repositories), managed by an Azure Devops platform. I have one AD project for each pod. The point is, when I try to execute pod repo add or pod install (I perform this on…
Carl Sarkis
  • 119
  • 6
0
votes
1 answer

ServiceFabric - ApplicationManifest.xml - RepositoryCredentials to use ACR Service Connection

I have a Service Fabric application that downloads the image from Azure ACR repostiry. The authentication of the ACR repo is from ApplicationManifest.xml
Rajakumar Babu
  • 117
  • 2
  • 9
0
votes
2 answers

Can we create Azure Service Connection using any command/script/ARM Template?

I need to create Azure Service Connection, I can create the same using UI in Azure DevOps portal. But I need to know if I can create the same using some Az command or ARM Template or any Powershell script ?
0
votes
1 answer

Pipeline Level Access Control for Service Connection in Azure DevOps - Classic Editor Pipelines

I have a SSH service connection created in Azure DevOps. My account has enabled 'New service connections experience' preview feature and able to see new security features for service connections. It appears that we can enable security so that…
0
votes
1 answer

How to assign group permissions to Azure DevOps Service Connections via API?

I create service connections via the terraform Azure DevOps module. This works well, but they are mainly accessible by myself, same as those I create manually. My team members should also have the possibility to access and modify those service…
hey
  • 2,643
  • 7
  • 29
  • 50
0
votes
1 answer

"Management Group" field empty in Azure service connection form

I have created several Azure service connections in Azure DevOps in the past, but since a few weeks' time, I can't anymore: The "Management Group" dropdown field is empty: What could the reason be?
hey
  • 2,643
  • 7
  • 29
  • 50
0
votes
0 answers

Android bound service callback never triggered

I'm trying to create a very simple Service to feed an Activity and provide it with a set of frames. I followed the Bound Service methodology and created a callback interface to feed the Activity. Client side (Activity): public class MainActivity…
weirdgyn
  • 886
  • 16
  • 47
0
votes
2 answers

Android Leaked Service Connection

I am using a JobIntent service to perform some operation. I am starting the Service from say Screen A. After the service performs its work I am sending a callback from JobIntent Service to the Screen A. Then immediately the Screen A finishes itself…
0
votes
1 answer

ServiceConnection - Service throws NullPointerException

In my application, it was possibly for me to establish a bluetooth connection and sending bytes with an own Service and send some bytes to the receiver. Now I tried unsuccessfully to connect to my own server for sending a text and get an answer.…