You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="IAM-style members who will be granted roles/storage.objectAdmin on bucket."
3
+
type=list(string)
4
+
default=[]
5
+
}
1
6
2
-
variable"name" {
3
-
description="The name of the bucket."
4
-
type=string
7
+
variable"force_destroy" {
8
+
description="When deleting a bucket, this boolean option will delete all contained objects. If you try to delete a bucket that contains objects, Terraform will fail that run."
9
+
type=bool
10
+
default=false
5
11
}
6
12
7
13
variable"location" {
@@ -10,23 +16,22 @@ variable "location" {
10
16
default="europe-west1"
11
17
}
12
18
13
-
variable"force_destroy" {
14
-
description="When deleting a bucket, this boolean option will delete all contained objects. If you try to delete a bucket that contains objects, Terraform will fail that run."
15
-
type=bool
16
-
default=false
19
+
variable"name" {
20
+
description="The name of the bucket."
21
+
type=string
17
22
}
18
23
19
-
20
-
variable"admins" {
21
-
description="IAM-style members who will be granted roles/storage.objectAdmin on bucket."
22
-
type=list(string)
23
-
default=[]
24
+
variable"public_access_prevention" {
25
+
description="The public access prevention configuration for this bucket."
26
+
type=string
27
+
default="inherited"
24
28
}
25
29
26
-
variable"viewers" {
27
-
description="IAM-style members who will be granted roles/storage.objectViewer on bucket."
28
-
type=list(string)
29
-
default=[]
30
+
variable"retention_policy" {
31
+
type=map(any)
32
+
nullable=true
33
+
default=null
34
+
description="Configuration of the bucket's data retention policy for how long objects in the bucket should be retained."
30
35
}
31
36
32
37
variable"users" {
@@ -35,9 +40,8 @@ variable "users" {
35
40
default=[]
36
41
}
37
42
38
-
variable"retention_policy" {
39
-
type=map(any)
40
-
nullable=true
41
-
default=null
42
-
description="Configuration of the bucket's data retention policy for how long objects in the bucket should be retained."
43
+
variable"viewers" {
44
+
description="IAM-style members who will be granted roles/storage.objectViewer on bucket."
0 commit comments