-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
56 lines (47 loc) · 1.42 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
46
47
48
49
50
51
52
53
54
55
56
# The variable "image" is declared in Producer Portal
variable "source_image" {
description = "Defines the VM image passed from the GCP Marketplace"
type = string
# Set the default value to your image. Marketplace will overwrite this value
# to a Marketplace owned image on publishing the product
default = "projects/graphdb-public/global/images/ontotext-graphdb-10-8-0-202411131143"
}
variable "goog_cm_deployment_name" {
description = "Deployment name"
type = string
default = "graphdb"
}
variable "project_id" {
description = "Project in which the VM will be created"
type = string
}
variable "zone" {
description = "The zone where the VM will be created"
type = string
default = "us-central1-a"
}
variable "machine_type" {
description = "Type of the VM that will be created"
type = string
default = "n2-highmem-8"
}
variable "boot_disk_size" {
description = "Boot disk size in GBs"
type = number
default = 500
}
variable "boot_disk_type" {
description = "Type of the boot disk"
type = string
default = "pd-ssd"
}
variable "network_interface" {
description = "The network interface to attach the VM to"
type = string
default = "default"
}
variable "allowed_ingress_cidrs" {
description = "CIDR blocks that are allowed to access the GraphDB port"
type = list(string)
default = ["0.0.0.0/0"]
}