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.comResource Pattern
projects/{project}/locations/{location}/instances/{instance}References
Chat
Powered by AITalk 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 Documentation
terraform
1resource "google_filestore_instance" "main" {2 name = "fst-${var.environment}"3 location = var.zone4 tier = "BASIC_HDD"56 file_shares {7 capacity_gb = 10248 name = "share"9 }1011 networks {12 network = "default"13 modes = ["MODE_IPV4"]14 }15}
Utilities
Utilities to support app deployment or configuration.