Change bucket_policy_only into uniform_bucket_level_access in GCS module (#135)

* Change bucket_policy_only into bucket_policy_only

* Update changelog
This commit is contained in:
vanessabodard-voi
2020-09-15 19:33:40 +02:00
committed by GitHub
parent 0eaeea6251
commit 435d64d81a
8 changed files with 9 additions and 8 deletions

View File

@@ -54,7 +54,7 @@ resource "google_storage_bucket" "buckets" {
location = var.location
storage_class = var.storage_class
force_destroy = lookup(var.force_destroy, each.key, false)
bucket_policy_only = lookup(var.bucket_policy_only, each.key, true)
uniform_bucket_level_access = lookup(var.uniform_bucket_level_access, each.key, true)
versioning {
enabled = lookup(var.versioning, each.key, false)
}