block-quote On this pagechevron-down
copy Copy chevron-down
data-sources ionoscloud_k8s_cluster Get information on a IonosCloud K8s Cluster
The k8s Cluster data source can be used to search for and return existing k8s clusters. If a single match is found, it will be returned. If your search results in multiple matches, an error will be returned. When this happens, please refine your search string so that it is specific enough to return only one result.
Copy data "ionoscloud_k8s_cluster" "example" {
id = " cluster_id "
}
Copy data "ionoscloud_k8s_cluster" "example" {
name = " K8s Cluster Example "
} Argument Reference
name - (Optional) Name of an existing cluster that you want to search for.
id - (Optional) ID of the cluster you want to search for.
Either name or id must be provided. If none, or both are provided, the datasource will return an error.
Attributes Reference
The following attributes are returned by the datasource:
name - name of the cluster
k8s_version - Kubernetes version
maintenance_window - A maintenance window comprise of a day of the week and a time for maintenance to be allowed
time - A clock time in the day when maintenance is allowed
day_of_the_week - Day of the week when maintenance is allowed
available_upgrade_versions - A list of available versions for upgrading the cluster
viable_node_pool_versions - A list of versions that may be used for node pools under this cluster
state - one of "AVAILABLE", "INACTIVE", "BUSY", "DEPLOYING", "ACTIVE", "FAILED", "SUSPENDED", "FAILED_SUSPENDED", "UPDATING", "FAILED_UPDATING", "DESTROYING", "FAILED_DESTROYING", "TERMINATED"
node_pools - list of the IDs of the node pools in this cluster
api_subnet_allow_list - access to the K8s API server is restricted to these CIDRs
public - indicates if the cluster is public or private.
nat_gateway_ip - the NAT gateway IP of the cluster if the cluster is private.
node_subnet - the node subnet of the cluster, if the cluster is private.
location - this attribute is mandatory if the cluster is private.
s3_buckets - list of IONOS Object Storage bucket configured for K8s usage
kube_config - Kubernetes configuration
config - structured kubernetes config consisting of a list with 1 item with the following fields:
api_version - Kubernetes API Version
clusters - list of
cluster - map of
certificate-authority-data - base64 decoded cluster CA data
server - server address in the form https://host:port
users - list of
user - map of
token - user token used for authentication
user_tokens - a convenience map to be search the token of a specific user
server - cluster server (same as config[0].clusters[0].cluster.server but provided as an attribute for ease of use)
ca_crt - base64 decoded cluster certificate authority data (provided as an attribute for direct use)
NOTE : The whole config node is marked as sensitive .
Example of accessing a kubernetes cluster using the user's token
Example of accessing a kubernetes cluster using the token from the config
Example of dumping the kube_config raw data into a yaml file
NOTE : Dumping kube_config data into files poses a security risk.
NOTE : Using sensitive_content for local_file does not show the data written to the file during the plan phase.
Last updated 6 months ago