fst

Filestore

StorageGCP
General

General information about the service.

Description

Google Cloud Filestore provides fully managed NFS file servers on Google Cloud for applications requiring a filesystem interface.

Service ID

file.googleapis.com

Resource Pattern

projects/{project}/locations/{location}/instances/{instance}

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

fst-{workload}-{environment}

Length

1-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

project

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_filestore_instance" "main" {
2 name = "fst-${var.environment}"
3 location = var.zone
4 tier = "BASIC_HDD"
5
6 file_shares {
7 capacity_gb = 1024
8 name = "share"
9 }
10
11 networks {
12 network = "default"
13 modes = ["MODE_IPV4"]
14 }
15}
Utilities

Utilities to support app deployment or configuration.