ionoscloud_inmemorydb_clusters_v2
Lists IONOS CLOUD InMemoryDB V2 Clusters.
Last updated
Lists IONOS CLOUD InMemoryDB V2 Clusters.
The ionoscloud_inmemorydb_clusters_v2 data source can be used to retrieve information about existing InMemoryDB V2 clusters in a given location, with an optional name filter.
data "ionoscloud_inmemorydb_clusters_v2" "all" {
location = "de/txl"
}
data "ionoscloud_inmemorydb_clusters_v2" "filtered" {
location = "de/txl"
name = "my-cluster"
}location - (Required)[string] The location to query.
name - (Optional)[string] Filter by name (case-insensitive contains match).
The following attributes are returned by the datasource:
items - List of clusters. Each item exposes the same attributes as the ionoscloud_inmemorydb_cluster_v2 data source. Note that credentials.password is not available — only credentials.username is returned by the API.
Last updated
