subcategory | layout | page_title | sidebar_current | description |
---|---|---|---|---|
Dataplatform |
ionoscloud |
IonosCloud : ionoscloud_dataplatform_node_pools |
docs-dataplatform_node_pools |
Get information on a Dataplatform Node Pool list under a Dataplatform Cluster. |
The Dataplatform Node Pools Data Source can be used to search for and return a list of existing Dataplatform Node Pools under a Dataplatform Cluster.
data "ionoscloud_dataplatform_node_pools" "example" {
cluster_id = <cluster_id>
}
data "ionoscloud_dataplatform_node_pools" "example" {
cluster_id = <cluster_id>
name = "Dataplatform_Node_Pool_Example"
}
data "ionoscloud_dataplatform_node_pools" "example" {
cluster_id = <cluster_id>
name = "_Example"
partial_match = true
}
cluster_id
- (Required) ID of the cluster the searched node pool is part of.name
- (Optional) Name of an existing cluster that you want to search for. Search by name is case-insensitive. The whole resource name is required ifpartial_match
parameter is not set to true.partial_match
- (Optional) Whether partial matching is allowed or not when using name argument. Default value is false.
The following attributes are returned by the datasource:
cluster_id
- ID of the cluster the searched node pool is part of.node_pools
- List of Node Pools - See the Node Pool section.