infrastructure/project-setup/service-api.tf (32 lines of code) (raw):

# 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. resource "google_project_service" "vertex_ai_api" { service = "aiplatform.googleapis.com" disable_on_destroy = false } resource "google_project_service" "run_api" { service = "run.googleapis.com" disable_on_destroy = false } resource "google_project_service" "functions_api" { service = "cloudfunctions.googleapis.com" disable_on_destroy = false } resource "google_project_service" "cloudbuild_api" { service = "cloudbuild.googleapis.com" disable_on_destroy = false } resource "google_project_service" "cloudscheduler" { service = "cloudscheduler.googleapis.com" disable_on_destroy = false } resource "google_project_service" "bigquery_connection_api" { service = "bigqueryconnection.googleapis.com" disable_on_destroy = false } resource "google_project_service" "iam_api" { service = "iam.googleapis.com" disable_on_destroy = false } resource "google_project_service" "resourcemanager_api" { service = "cloudresourcemanager.googleapis.com" disable_on_destroy = false }