According to the documentation (https://www.terraform.io/docs/providers/google/r/storage_bucket.html),
the acceptable values for "storage_class" are: STANDARD, MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, ARCHIVE.
However, what if I want to deploy a GCP bucket that's REGIONAL and ARCHIVE?
I've tried:
storage_class = "ARCHIVE, REGIONAL"
And:
storage_class = "ARCHIVE", "REGIONAL"
Neither unfortunately work. For the first, I receive the message:
Argument definitions must be separated by newlines, not commas. An argument definition must end with a newline.
For the second, I receive the message:
Invalid Value
Is it possible to define multiple storage classes for GCP buckets with Terraform?