-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
72 lines (57 loc) · 2.07 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
##############################################################################
# Account Variables
##############################################################################
variable unique_id {
description = "unique identifiers for all created resources"
type = string
}
variable ibmcloud_api_key {
description = "api key for IBM Cloud"
type = string
}
variable generation {
description = "Generation for VPC"
type = number
}
variable ibm_region {
description = "region where all created resources will be deployed"
type = string
}
variable cluster {
description = "name of existing kubernetes cluster"
type = string
}
variable resource_group {
description = "resource group of existing kubernetes cluster"
type = string
default = "asset-development"
}
##############################################################################
##############################################################################
# Block Storage Variables
##############################################################################
variable capacity {
description = "Capacity for all block storage volumes provisioned in gigabytes"
type = number
default = 100
}
variable profile {
description = "The profile to use for this volume."
type = string
default = "10iops-tier"
}
##############################################################################
##############################################################################
# Deployment variables
##############################################################################
variable image_name {
description = "image for deployment where portworx volume will be mounted to for use"
type = string
default = "test"
}
variable file_path {
description = "path for the portworx volume to be mounted to on the pods of the deployment"
type = string
default = "/portworxDir"
}
##############################################################################