terraform-provision-infra/modules/nonagones/gcp-res/outputs.tf (16 lines of code) (raw):

# Copyright 2023 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. output "kubernetes_cluster_name" { value = google_container_cluster.gke.name description = "GKE Cluster Name" } output "google_filestore_reserved_ip_range" { value = google_filestore_instance.instance.networks[0].ip_addresses[0] description = "google_filestore_instance reserved_ip_range" } output "gpu_nodepool_name" { value = google_container_node_pool.separately_gpu_nodepool.name description = "gpu node pool name" } output "artifactregistry_url" { value = "${var.region}-docker.pkg.dev/${var.project_id}/${google_artifact_registry_repository.sd_repo.name}" description = "artifactregistry_url" }