From a28de6879f192e413e70bf5f7ee0e00847fc30a5 Mon Sep 17 00:00:00 2001 From: caetano-colin Date: Thu, 6 Jun 2024 11:57:26 -0300 Subject: [PATCH] add Google Header to file --- examples/genai-rag-multimodal/outputs.tf | 16 ++++++++++++++++ examples/genai-rag-multimodal/variables.tf | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/examples/genai-rag-multimodal/outputs.tf b/examples/genai-rag-multimodal/outputs.tf index 5a5a9b1a..2ed792a4 100644 --- a/examples/genai-rag-multimodal/outputs.tf +++ b/examples/genai-rag-multimodal/outputs.tf @@ -1,3 +1,19 @@ +/** + * Copyright 2024 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 "private_endpoint_ip_address" { description = "The private IP address of the vector search endpoint" value = google_compute_address.vector_search_static_ip.address diff --git a/examples/genai-rag-multimodal/variables.tf b/examples/genai-rag-multimodal/variables.tf index ac3fe55c..8c3ff9da 100644 --- a/examples/genai-rag-multimodal/variables.tf +++ b/examples/genai-rag-multimodal/variables.tf @@ -1,3 +1,19 @@ +/** + * Copyright 2024 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. + */ + variable "service_account_name" { description = "The name of the service account" type = string