-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
65 lines (54 loc) · 1.59 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
variable "project" {
type = string
description = "GCP Project in which to create the connector"
}
variable "region" {
type = string
description = "Region in GCP in which to deploy the connector"
}
variable "network" {
type = string
description = "Name of the network the connector will be deployed in"
}
variable "ssh_key_path" {
type = string
description = "Path of your SSH key to upload to instance to allow management access"
}
variable "management_cidrs" {
type = list(string)
description = "CIDR blocks to allow SSH connections from"
default = ["0.0.0.0/0"]
}
variable "package_version" {
type = string
description = "Override to use a specific version of connector (e.g. `1.3.0`)"
default = ""
}
variable "machine_type" {
type = string
description = "GCP compute instance type"
default = "e2-standard-2"
}
variable "labels" {
type = map(any)
description = "Add labels to each resource"
default = null
}
variable "name_prefix" {
type = string
description = "String to be added in front of all GCP object names"
default = "banyan"
}
variable "banyan_host" {
type = string
description = "URL of the Banyan Command Center"
default = "https://team.console.banyanops.com/"
}
variable "banyan_api_key" {
type = string
description = "API Key or Refresh Token generated from the Banyan Command Center console"
}
variable "connector_name" {
type = string
description = "Name to use when registering this Connector with the Command Center console"
}