Skip to content

Commit

Permalink
fix: add read_only property to the test
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanholsteijn committed Jan 3, 2024
1 parent 33d2c6b commit 94e8d41
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ resource "google_cloud_run_v2_service" "<%= ctx[:primary_resource_id] %>" {
containers {
image = "us-docker.pkg.dev/cloudrun/container/hello"
volume_mounts {
name = "bucket"
name = "bucket"
mount_path = "/var/www"
read_only = false
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ resource "google_cloud_run_v2_service" "<%= ctx[:primary_resource_id] %>" {
volumes {
name = "nfs"
nfs {
server = google_filestore_instance.default.networks[0].ip_addresses[0]
path = "/share1"
server = google_filestore_instance.default.networks[0].ip_addresses[0]
path = "/share1"
read_only = false
}
}
}
Expand Down

0 comments on commit 94e8d41

Please sign in to comment.