connected_cluster_cluster_user_credentials
Creates, updates, deletes, gets or lists a connected_cluster_cluster_user_credentials
resource.
Overview
Name | connected_cluster_cluster_user_credentials |
Type | Resource |
Id | azure.hybrid_kubernetes.connected_cluster_cluster_user_credentials |
Fields
Name | Datatype | Description |
---|---|---|
hybridConnectionConfig | object | Contains the REP (rendezvous endpoint) and “Sender” access token. |
kubeconfigs | array | Base64-encoded Kubernetes configuration file. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | clusterName, resourceGroupName, subscriptionId, data__authenticationMethod, data__clientProxy | Gets 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 }}';