Skip to content

Latest commit

 

History

History
413 lines (269 loc) · 11.6 KB

File metadata and controls

413 lines (269 loc) · 11.6 KB
page_title subcategory description
hopsworksai_clusters Data Source - terraform-provider-hopsworksai
Use this data source to get information about all your clusters in Hopsworks.ai

hopsworksai_clusters (Data Source)

Use this data source to get information about all your clusters in Hopsworks.ai

Example Usage

# retrieve all clusters
data "hopsworksai_clusters" "all" {

}

# retrieve only AWS clusters
data "hopsworksai_clusters" "awsClusters" {
  filter {
    cloud = "AWS"
  }
}

Schema

Optional

Read-Only

  • clusters (List of Object) The list of clusters in the user's account. (see below for nested schema)
  • id (String) The ID of this resource.

Nested Schema for filter

Optional:

  • cloud (String) Filter based on cloud provider.

Nested Schema for clusters

Read-Only:

  • activation_state (String)
  • attach_public_ip (Boolean)
  • autoscale (List of Object) (see below for nested schema)
  • aws_attributes (List of Object) (see below for nested schema)
  • azure_attributes (List of Object) (see below for nested schema)
  • backup_retention_period (Number)
  • cluster_domain_prefix (String)
  • cluster_id (String)
  • collect_logs (Boolean)
  • creation_date (String)
  • custom_hosted_zone (String)
  • deactivate_hopsworksai_log_collection (Boolean)
  • gcp_attributes (List of Object) (see below for nested schema)
  • head (List of Object) (see below for nested schema)
  • init_script (String)
  • issue_lets_encrypt_certificate (Boolean)
  • managed_users (Boolean)
  • name (String)
  • open_ports (List of Object) (see below for nested schema)
  • os (String)
  • rondb (List of Object) (see below for nested schema)
  • run_init_script_first (Boolean)
  • ssh_key (String)
  • start_date (String)
  • state (String)
  • tags (Map of String)
  • update_state (String)
  • upgrade_in_progress (List of Object) (see below for nested schema)
  • url (String)
  • version (String)
  • workers (Set of Object) (see below for nested schema)

Nested Schema for clusters.autoscale

Read-Only:

Nested Schema for clusters.autoscale.non_gpu_workers

Read-Only:

  • disk_size (Number)
  • downscale_wait_time (Number)
  • instance_type (String)
  • max_workers (Number)
  • min_workers (Number)
  • spot_config (List of Object) (see below for nested schema)
  • standby_workers (Number)

Nested Schema for clusters.autoscale.non_gpu_workers.spot_config

Read-Only:

  • fall_back_on_demand (Boolean)
  • max_price_percent (Number)

Nested Schema for clusters.aws_attributes

Read-Only:

Nested Schema for clusters.aws_attributes.bucket

Read-Only:

Nested Schema for clusters.aws_attributes.bucket.acl

Read-Only:

  • bucket_owner_full_control (Boolean)

Nested Schema for clusters.aws_attributes.bucket.encryption

Read-Only:

  • bucket_key (Boolean)
  • kms_type (String)
  • mode (String)
  • user_key_arn (String)

Nested Schema for clusters.aws_attributes.ebs_encryption

Read-Only:

  • kms_key (String)

Nested Schema for clusters.aws_attributes.network

Read-Only:

  • security_group_id (String)
  • subnet_id (String)
  • vpc_id (String)

Nested Schema for clusters.azure_attributes

Read-Only:

  • acr_registry_name (String)
  • aks_cluster_name (String)
  • container (List of Object) (see below for nested schema)
  • location (String)
  • network (List of Object) (see below for nested schema)
  • resource_group (String)
  • user_assigned_managed_identity (String)

Nested Schema for clusters.azure_attributes.container

Read-Only:

Nested Schema for clusters.azure_attributes.container.encryption

Read-Only:

  • mode (String)

Nested Schema for clusters.azure_attributes.network

Read-Only:

  • resource_group (String)
  • search_domain (String)
  • security_group_name (String)
  • subnet_name (String)
  • virtual_network_name (String)

Nested Schema for clusters.gcp_attributes

Read-Only:

Nested Schema for clusters.gcp_attributes.bucket

Read-Only:

  • name (String)

Nested Schema for clusters.gcp_attributes.disk_encryption

Read-Only:

  • customer_managed_encryption_key (String)

Nested Schema for clusters.gcp_attributes.network

Read-Only:

  • network_name (String)
  • subnetwork_name (String)

Nested Schema for clusters.head

Read-Only:

  • disk_size (Number)
  • ha_enabled (Boolean)
  • instance_type (String)
  • node_id (String)
  • private_ip (String)

Nested Schema for clusters.open_ports

Read-Only:

  • feature_store (Boolean)
  • kafka (Boolean)
  • online_feature_store (Boolean)
  • ssh (Boolean)

Nested Schema for clusters.rondb

Read-Only:

Nested Schema for clusters.rondb.api_nodes

Read-Only:

  • count (Number)
  • disk_size (Number)
  • instance_type (String)
  • private_ips (List of String)

Nested Schema for clusters.rondb.configuration

Read-Only:

Nested Schema for clusters.rondb.configuration.general

Read-Only:

Nested Schema for clusters.rondb.configuration.ndbd_default.benchmark

Read-Only:

  • grant_user_privileges (Boolean)

Nested Schema for clusters.rondb.configuration.ndbd_default

Read-Only:

  • replication_factor (Number)

Nested Schema for clusters.rondb.data_nodes

Read-Only:

  • count (Number)
  • disk_size (Number)
  • instance_type (String)
  • private_ips (List of String)

Nested Schema for clusters.rondb.management_nodes

Read-Only:

  • count (Number)
  • disk_size (Number)
  • instance_type (String)
  • private_ips (List of String)

Nested Schema for clusters.rondb.mysql_nodes

Read-Only:

  • arrow_flight_with_duckdb (Boolean)
  • count (Number)
  • disk_size (Number)
  • instance_type (String)
  • private_ips (List of String)

Nested Schema for clusters.rondb.single_node

Read-Only:

  • disk_size (Number)
  • instance_type (String)
  • private_ips (List of String)

Nested Schema for clusters.upgrade_in_progress

Read-Only:

  • from_version (String)
  • to_version (String)

Nested Schema for clusters.workers

Read-Only:

  • count (Number)
  • disk_size (Number)
  • instance_type (String)
  • private_ips (List of String)
  • spot_config (List of Object) (see below for nested schema)

Nested Schema for clusters.workers.spot_config

Read-Only:

  • fall_back_on_demand (Boolean)
  • max_price_percent (Number)