-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathvariables.tf
More file actions
41 lines (35 loc) · 874 Bytes
/
variables.tf
File metadata and controls
41 lines (35 loc) · 874 Bytes
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
variable "bucket_name" {
description = "Google Cloud Storage (GCS) bucket Name."
type = string
}
variable "project_id" {
description = "GCS Project ID."
type = string
}
variable "gcs_location" {
description = "GCS Location."
type = string
default = "EU"
}
variable "force_destroy" {
description = "Delete all objects when deleting bucket."
type = bool
default = false
}
variable "storage_class" {
description = <<EOF
The Storage class of the GCS bucket.
Supported Values - STANDARD, MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE.
EOF
type = string
default = "STANDARD"
}
variable "labels" {
description = "Labels to assign on the GCS bucket."
type = map(any)
}
variable "enable_versioning" {
description = "Enable GCS Bucket versioning."
type = bool
default = false
}