-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
41 lines (36 loc) · 830 Bytes
/
variables.tf
File metadata and controls
41 lines (36 loc) · 830 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 "project" {
description = "project id of the gcp"
type = string
}
variable "region" {
default = "us-central1"
type = string
}
variable "zone" {
default = "us-central1-a"
type = string
}
variable "ssh_params" {
description = "keys required to set the ssh connection with the compute instances"
type = object({
user = string
public_path = string
private_path = string
})
}
variable "elk_machine" {
description = "parameters for the VM instance of ELK nodes"
type = object({
machine_type = string
boot_os_project = string
boot_os_family = string
})
}
variable "mysql_machine" {
description = "parameters for the VM instance of MySQL nodes"
type = object({
machine_type = string
boot_os_project = string
boot_os_family = string
})
}