-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
executable file
·54 lines (43 loc) · 1.6 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
##############################################################################
# Variables
##############################################################################
variable ibmcloud_api_key {
description = "The IBM Cloud platform API key needed to deploy IAM enabled resources"
type = string
}
variable ibm_region {
description = "IBM Region where resource will be provisioned"
type = string
}
variable unique_id {
description = "A unique identifier need to provision resources. Must begin with a letter"
type = string
}
variable resource_group {
description = "Name for IBM Cloud Resource Group where resources will be deployed"
type = string
}
variable cluster_name {
description = "The name of the cluster where Sysdig agents will be installed"
type = string
}
##############################################################################
##############################################################################
# Resource Variables
##############################################################################
variable service_endpoints {
description = "Service endpoints for resource instances. Can be `public`, `private`, or `public-and-private`"
type = string
default = "private"
}
variable logdna_plan {
description = "Plan for Databases for PostgreSQL"
type = string
default = "7-day"
}
variable sysdig_plan {
description = "Plan for Databases for PostgreSQL"
type = string
default = "graduated-tier"
}
##############################################################################