-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
55 lines (42 loc) · 1.56 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
##############################################################################
# Account variables
##############################################################################
variable ibmcloud_api_key {
description = "The IBM Cloud platform API key needed to deploy IAM enabled resources"
}
variable generation {
description = "Generation of VPC. Can be 1 or 2"
default = 1
}
variable ibm_region {
description = "IBM Cloud region where all resources will be deployed"
default = "eu-gb"
}
variable resource_group {
description = "Name for IBM Cloud Resource Group"
default = "asset-development"
}
variable cluster_name {
description = "Name of the cluster where resources will be deployed"
}
##############################################################################
##############################################################################
# COS Variables
##############################################################################
variable bring_your_own_cos {
description = "Bring your own cos instance. If false, one will be created for you"
default = false
}
variable cos_name {
description = "Name of cos instance to be created"
default = "asset-s3fs-cos"
}
variable cos_bucket_name {
description = "Name of cos bucket to create"
default = "test-bucket-for-tests"
}
variable storage_class {
description = "Storage class of the PVC to be created"
default = "ibmc-s3fs-standard-perf-regional"
}
##############################################################################