terraform-google-cloud-run icon indicating copy to clipboard operation
terraform-google-cloud-run copied to clipboard

Typos in v2 setup for GCS

Open choonchernlim opened this issue 1 year ago • 0 comments

I noticed there are typos in the gcs block in the v2 module:.

dynamic "gcs" {
  for_each = volumes.value.gcs[*]
  content {
    bucket    = gcs.value["medium"]     # should be "bucket" instead of "medium"
    read_only = gcs.value["size_limit"] # should be "read_only" instead of "size_limit"
  }
}

I reckon it's due to accidental copy/paste from the block above it. Thanks.

choonchernlim avatar Aug 15 '24 15:08 choonchernlim