nav

NetApp Volumes

StorageGCP
General

General information about the service.

Description

Google Cloud NetApp Volumes provides fully managed file storage powered by NetApp for enterprise workloads.

Service ID

netapp.googleapis.com

Resource Pattern

projects/{project}/locations/{location}/volumes/{volume}

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

nav-{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_netapp_volume" "main" {
2 name = "nav-${var.environment}"
3 location = var.region
4 capacity_gib = 1024
5 share_name = "share"
6 storage_pool = google_netapp_storage_pool.main.name
7 protocols = ["NFSV3"]
8}
Utilities

Utilities to support app deployment or configuration.