-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
48 lines (40 loc) · 1022 Bytes
/
variables.tf
File metadata and controls
48 lines (40 loc) · 1022 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
42
43
44
45
46
47
48
variable "name" {
description = "Name of the bucket"
type = string
}
variable "customer" {
description = "Customer for the current deployment"
type = string
default = ""
}
variable "tags" {
description = "Default tags to add to resources"
type = map(any)
default = {}
}
# module specific variables
variable "application_id" {
type = string
description = "ID of the application attached to the api key"
default = null
}
variable "description" {
type = string
description = "Description of the iam api key"
default = null
}
variable "user_id" {
type = string
description = "ID of the user attached to the api key"
default = null
}
variable "expires_at" {
type = string
description = "The date and time of the expiration of the iam api key"
default = null
}
variable "default_project_id" {
type = string
description = "The default project ID to use with object storage"
default = null
}