-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
39 lines (33 loc) · 927 Bytes
/
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
variable "data" {
type = string
description = "Inline YAML string with data of the component. Exactly one of data and uri can be specified."
default = ""
}
variable "description" {
type = string
description = "The description of the component."
default = "An component for EC2 Image Builder."
}
variable "name" {
type = string
description = "The name of the component."
}
variable "platform" {
type = string
description = "The platform of the component."
}
variable "tags" {
type = map(string)
description = "The tags applied to the component."
default = {}
}
variable "uri" {
type = string
description = "S3 URI with data of the component. Exactly one of data and uri can be specified."
default = ""
}
variable "component_version" {
type = string
description = "The version of the component."
default = "1.0.0"
}