-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
72 lines (59 loc) · 1.83 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
71
72
/*
Copyright (c) 2023 - Present. Ritten. All rights reserved
Use of this source code is governed by a MIT license that can be found in the LICENSE file.
*/
variable "honeycomb_refinery_verison" {
default = "latest"
type = string
description = "Version of Honeycomb Refinery to deploy"
}
variable "config_file_path" {
default = ""
type = string
description = "Path to the Refinery config.yaml file"
}
variable "rules_file_path" {
default = ""
type = string
description = "Path to the Refinery rules.yaml file"
}
variable "refinery_instance_count" {
default = 1
type = number
description = "The number of Honeycomb Refinery Instance to run"
}
variable "project_id" {
default = "my-project"
type = string
description = "GCP Project ID"
}
variable "vpc" {
default = "vpc-primary"
type = string
description = "Name of an existing vpc where the resources will be created"
}
variable "subnet" {
default = "subnet-primary"
type = string
description = "Name of a subnet within the existing vpc where the resources will be created"
}
variable "region" {
default = "us-east1"
type = string
description = "Region where the subnet is located"
}
variable "zone" {
default = "us-east1-b"
type = string
description = "A zone within the region where resources will be created"
}
variable "api_key_secret_name" {
default = "honeycomb-refinery-api-key"
type = string
description = "Name of a GCP Secret containing the honeycomb api key to be used by refinery for trace data"
}
variable "metrics_api_key_secret_name" {
default = "honeycomb-refinery-metrics-api-key"
type = string
description = "Name of a GCP Secret containing the honeycomb api key to be used by refinery for metrics data"
}