cluster_endpoints
note
The resource's API may change in subsequent versions to simplify user experience.
Returns the endpoints of a CelerData cluster.
If your CelerData cluster is deployed under a public subnet, both public and private endpoints will be returned. If your CelerData cluster is deployed under a private subnet, only the private endpoint will be returned.
Example Usage
resource "celerdatabyoc_cluster_endpoints" "endpoints"{
cluster_id = "<cluster_resource_id>"
}
# Output the `endpoints` attribute.
output "endpoints"{
value = celerdatabyoc_cluster_endpoints.endpoints.endpoints
}