Skip to main content

clusternest_organization (Data Source)

Example Usage

data "clusternest_organization" "existing" {
id = 123
}

output "organization_name" {
value = data.clusternest_organization.existing.name
}

Schema

Required

  • id (Number) The ID of the organization to look up.

Read-Only

  • is_activated (Boolean) Whether the organization has completed activation (e.g. billing setup) and can provision clusters.
  • name (String) Display name of the organization.
  • quota (Attributes) (see below for nested schema)
  • used_quota (Attributes) (see below for nested schema)

Nested Schema for quota

Read-Only:

  • basic (Number) Maximum number of Basic-tier clusters.
  • extreme (Number) Maximum number of Extreme-tier clusters.
  • standard (Number) Maximum number of Standard-tier clusters.

Nested Schema for used_quota

Read-Only:

  • basic (Number) Maximum number of Basic-tier clusters.
  • extreme (Number) Maximum number of Extreme-tier clusters.
  • standard (Number) Maximum number of Standard-tier clusters.