-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
70 lines (54 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
variable "project_id" {
description = "GCP project ID"
}
variable "network_prefix" {
description = "Human readable name used as prefix to generated names"
}
variable "subnet_cidr_range" {
description = "The range of internal addresses that are owned by this subnetwork. For example, 10.0.0.0/8 or 192.168.0.0/16"
}
variable "service_account_email" {
description = "Service account client email"
}
variable "public_key_path" {
description = "Auth public rsa key"
}
variable "bucket_path" {
description = "GCS bucket where offline elastic+java packages are stored"
}
variable "compute_region" {
default = "europe-west2"
description = "Default gcp region to manage resources in"
}
variable "instance_zone" {
default = "europe-west2-b"
description = "The zone of the instance. E.g. europe-west2-b"
}
variable "image" {
default = "centos-7-v20201014"
description = "The image to initialise the disk for instance."
}
variable "elasticsearch_machine_type" {
default = "e2-medium"
}
variable "kibana_machine_type" {
default = "e2-medium"
}
variable "logstash_machine_type" {
default = "e2-medium"
}
variable "secure_source_ip" {
description = "Any secure IP to access HTTP and ssh on resources"
}
variable "expiration_policy" {
default = "604800s"
}
variable "topic_name" {
default="test-topic"
}
variable "subscription_name" {
default="test-subscription"
}
variable "elastic_pwd" {
default="e1l2a3s4t5i6c"
}