-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
44 lines (37 loc) · 999 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
40
41
42
43
44
variable "vdc_org_name" {
description = "The name of the organization to use."
type = string
}
variable "catalog_name" {
description = "The name of the catalog where to upload OVA file."
type = string
}
variable "name" {
description = "Item name in the catalog."
type = string
}
variable "description" {
description = "Description of the item."
type = string
default = null
}
variable "ova_path" {
description = "Absolute or relative path to file to upload."
type = string
default = null
}
variable "ovf_url" {
description = "URL to OVF file. Only OVF (not OVA) files are supported by VCD uploading by URL."
type = string
default = null
}
variable "upload_piece_size" {
description = "Size in MB for splitting upload size."
type = number
default = 10
}
variable "metadata_entry" {
description = "A set of metadata entries to assign."
type = list(map(string))
default = []
}