Skip to main content

connected_cluster_cluster_user_credentials

Creates, updates, deletes, gets or lists a connected_cluster_cluster_user_credentials resource.

Overview

Nameconnected_cluster_cluster_user_credentials
TypeResource
Idazure.hybrid_kubernetes.connected_cluster_cluster_user_credentials

Fields

NameDatatypeDescription
hybridConnectionConfigobjectContains the REP (rendezvous endpoint) and “Sender” access token.
kubeconfigsarrayBase64-encoded Kubernetes configuration file.

Methods

NameAccessible byRequired ParamsDescription
listSELECTclusterName, resourceGroupName, subscriptionId, data__authenticationMethod, data__clientProxyGets cluster user credentials of the connected cluster with a specified resource group and name.

SELECT examples

Gets cluster user credentials of the connected cluster with a specified resource group and name.

SELECT
hybridConnectionConfig,
kubeconfigs
FROM azure.hybrid_kubernetes.connected_cluster_cluster_user_credentials
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND data__authenticationMethod = '{{ data__authenticationMethod }}'
AND data__clientProxy = '{{ data__clientProxy }}';