open_shift_clusters_credentials
Creates, updates, deletes, gets or lists an open_shift_clusters_credentials
resource.
Overview
Name | open_shift_clusters_credentials |
Type | Resource |
Id | azure_isv.openshift_clusters.open_shift_clusters_credentials |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
kubeadminPassword | string | The password for the kubeadmin user. |
kubeadminUsername | string | The username for the kubeadmin user. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , resourceName | The operation returns the credentials. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
resourceName | string | The name of the OpenShift cluster resource. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
The operation returns the credentials.
SELECT
kubeadminPassword,
kubeadminUsername
FROM azure_isv.openshift_clusters.open_shift_clusters_credentials
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
;