Skip to content

Commit

Permalink
Add nfs support to cloudrun v1 services. (hashicorp#10244)
Browse files Browse the repository at this point in the history
[upstream:736bafb3e3e83b763956489408846f5ae483ed47]

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician committed May 17, 2024
1 parent 13b292f commit 4fdd62e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions website/docs/r/cloud_run_service.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -818,6 +818,13 @@ The following arguments are supported:
A filesystem specified by the Container Storage Interface (CSI).
Structure is [documented below](#nested_csi).

* `nfs` -
(Optional, [Beta](https://terraform.io/docs/providers/google/guides/provider_versions.html))
A filesystem backed by a Network File System share. This filesystem requires the
run.googleapis.com/execution-environment annotation to be set to "gen2" and
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
Structure is [documented below](#nested_nfs).


<a name="nested_secret"></a>The `secret` block supports:

Expand Down Expand Up @@ -900,6 +907,20 @@ The following arguments are supported:
* gcsfuse.run.googleapis.com
* bucketName: The name of the Cloud Storage Bucket that backs this volume. The Cloud Run Service identity must have access to this bucket.

<a name="nested_nfs"></a>The `nfs` block supports:

* `server` -
(Required)
IP address or hostname of the NFS server

* `path` -
(Required)
Path exported by the NFS server

* `read_only` -
(Optional)
If true, mount the NFS volume as read only in all mounts. Defaults to false.

- - -


Expand Down

0 comments on commit 4fdd62e

Please sign in to comment.