다음을 통해 공유


서비스 커넥터에 의해 추가된 연결 구성 가져오기

서비스 커넥터는 서비스 연결을 만들거나 업데이트하는 동안 데이터베이스 연결 문자열과 같은 연결 정보를 구성합니다. 서비스 연결을 만든 후 코드에서 이러한 연결 구성을 사용하는 코드를 작성할 수 있습니다. 이 페이지에서는 서비스 커넥터에 의해 추가된 연결 구성을 가져오는 방법을 보여 줍니다.

서비스 연결의 연결 구성을 가져오는 방법에는 여러 가지가 있습니다. 서비스 커넥터와 Azure Database for PostgreSQL 통합 문서에서 특정 대상 서비스 유형에 대한 구성 이름을 가져올 수 있습니다.

또는 다음과 같은 방법으로 프로그래밍 방식으로 연결 구성을 가져올 수 있습니다.

Azure CLI(/cli/azure)에서 다음 명령을 실행하여 서비스 연결의 구성을 나열할 수 있습니다.

# for Azure Web App
az webapp connection list-configuration -g <myResourceGroupName> -n <myWebAppName> --connection <myConnectionName>

# for Azure Container App
az containerapp connection list-configuration -g <myResourceGroupName> -n <myContainerAppName> --connection <myConnectionName>

# for Azure Spring App
az spring connection list-configuration --id /subscriptions/{subscription}/resourceGroups/{myResourceGroupName}/providers/Microsoft.AppPlatform/Spring/{mySpringAppName}/apps/{myAppName}/deployments/default/providers/Microsoft.ServiceLinker/linkers/{myConnectionName}

자세한 내용은 Azure CLI 참조 설명서의 다음 문서를 참조하세요.

다음 단계