From 700f177fe4b49fc9a26f37ba29f9fe370775a8bf Mon Sep 17 00:00:00 2001 From: jphmt-unnest Date: Wed, 11 Sep 2024 18:06:23 +0200 Subject: [PATCH] GCP: enable Filestore API --- gcp/main.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gcp/main.tf b/gcp/main.tf index 03104fb..6eabdd5 100644 --- a/gcp/main.tf +++ b/gcp/main.tf @@ -60,6 +60,11 @@ resource "google_project_service" "sqladmin" { disable_on_destroy = false } +# Enable Cloud Filestore API +resource "google_project_service" "filestore" { + service = "file.googleapis.com" + disable_on_destroy = false +} # Create the Cloud Run service resource "google_cloud_run_service" "run_service" {