Skip to content

Commit 3c3c045

Browse files
cloudrunv2: promote mount options for GcsFuse volumes to GA (#15154) (#10747)
[upstream:b8e703b8a96a4e196e7d71f948867999e1b46c68] Signed-off-by: Modular Magician <[email protected]>
1 parent aa29980 commit 3c3c045

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.changelog/15154.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
cloudrunv2: added `mount_options` in gcsfuse volumes for `google_cloud_run_v2_service`, `google_cloud_run_v2_job`, and `google_cloud_run_v2_workerpool` resources. (ga)
3+
```

google-beta/services/cloudrunv2/resource_cloud_run_v2_job_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,7 @@ func testAccCloudRunV2Job_cloudrunv2JobWithGcsVolume(context map[string]interfac
404404
gcs {
405405
bucket = "gcp-public-data-landsat"
406406
read_only = true
407-
mount_options = ["log-severity=info"]
408-
407+
mount_options = ["log-severity=info"]
409408
}
410409
}
411410
}

google-beta/services/cloudrunv2/resource_cloud_run_v2_service_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,8 +358,7 @@ resource "google_cloud_run_v2_service" "default" {
358358
gcs {
359359
bucket = "gcp-public-data-landsat"
360360
read_only = true
361-
mount_options = ["log-severity=info"]
362-
361+
mount_options = ["log-severity=info"]
363362
}
364363
}
365364
containers {

google-beta/services/cloudrunv2/resource_cloud_run_v2_worker_pool_test.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//
99
// This code is generated by Magic Modules using the following:
1010
//
11-
// Source file: https://github.com/GoogleCloudPlatform/magic-modules/tree/main/mmv1/third_party/terraform/services/cloudrunv2/resource_cloud_run_v2_worker_pool_test.go.tmpl
11+
// Source file: https://github.com/GoogleCloudPlatform/magic-modules/tree/main/mmv1/third_party/terraform/services/cloudrunv2/resource_cloud_run_v2_worker_pool_test.go
1212
//
1313
// DO NOT EDIT this file directly. Any changes made to this file will be
1414
// overwritten during the next generation cycle.
@@ -234,8 +234,7 @@ resource "google_cloud_run_v2_worker_pool" "default" {
234234
gcs {
235235
bucket = "gcp-public-data-landsat"
236236
read_only = true
237-
mount_options = ["log-severity=info"]
238-
237+
mount_options = ["log-severity=info"]
239238
}
240239
}
241240
containers {

website/docs/r/cloud_run_v2_job.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ When the field is set to false, deleting the job is allowed.
881881
If true, mount this volume as read-only in all mounts. If false, mount this volume as read-write.
882882

883883
* `mount_options` -
884-
(Optional, [Beta](https://terraform.io/docs/providers/google/guides/provider_versions.html))
884+
(Optional)
885885
A list of flags to pass to the gcsfuse command for configuring this volume.
886886
Flags should be passed without leading dashes.
887887

website/docs/r/cloud_run_v2_service.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1339,7 +1339,7 @@ When the field is set to false, deleting the service is allowed.
13391339
If true, mount the GCS bucket as read-only
13401340

13411341
* `mount_options` -
1342-
(Optional, [Beta](https://terraform.io/docs/providers/google/guides/provider_versions.html))
1342+
(Optional)
13431343
A list of flags to pass to the gcsfuse command for configuring this volume.
13441344
Flags should be passed without leading dashes.
13451345

website/docs/r/cloud_run_v2_worker_pool.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,7 @@ When the field is set to false, deleting the WorkerPool is allowed.
820820
If true, mount the GCS bucket as read-only
821821

822822
* `mount_options` -
823-
(Optional, [Beta](https://terraform.io/docs/providers/google/guides/provider_versions.html))
823+
(Optional)
824824
A list of flags to pass to the gcsfuse command for configuring this volume.
825825
Flags should be passed without leading dashes.
826826

0 commit comments

Comments
 (0)