-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
45 lines (38 loc) · 1.2 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
variable "gcs_bucket_name" {
type = "string"
description = "The name of the bucket"
}
variable "gcs_bucket_location" {
type = "string"
default = "europe-west2"
description = "The geographical location the bucket is provisioned in. e.g. europe-west2"
}
variable "project_id" {
type = "string"
description = "The ID of the project in which the resource belongs"
}
variable "gcs_bucket_storage_class" {
type = "string"
default = "REGIONAL"
description = "The avaialability of the bucket. e.g MULTI-REGIONAL, REGIONAL, NEARLINE and COLDLINE"
}
variable "gcs_bucket_labels" {
type = "map"
default = {}
description = "A set of key/value label pairs to assign to the bucket"
}
variable "versioning_enabled" {
type = "string"
default = true
description = "While set to true, versioning is fully enabled for this bucket"
}
variable "enable_acl" {
type = "string"
default = true
description = "Manages the access control list (ACL) for an object in a Google Cloud Storage (GCS) bucket"
}
variable "role_entity" {
type = "list"
description = "List of role/entity pairs in the form ROLE:entity"
default = []
}