-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
54 lines (44 loc) · 1.11 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
variable "ibmcloud_region" {
description = "Preferred IBM Cloud region to use for your infrastructure"
default = "us-east"
}
variable "ibmcloud_zone" {
description = "Preferred zone in the preferred IBM Cloud region"
default = "2"
}
variable "resource_group" {
default = "Default"
description = "Define the resource group for the workload"
}
variable "vpc_name" {
default = "rhpds"
description = "Name of your VPC"
}
variable "subnet_name" {
default = "rhpds"
description = "Name of your Subnet"
}
variable "pg_name" {
default = "rhpds"
description = "Name of your Public Gateway"
}
variable "cos_name" {
default = "rhpds"
description = "Cloud Object Storage resource instance"
}
variable "cluster_name" {
default = "rhpds"
description = "Name of RHOIC Cluster"
}
variable "cluster_version" {
default = "4.6.28_openshift"
description = "Openshift Version for RHOIC Cluster"
}
variable "cluster_flavor" {
default = "bx2.4x16"
description = "Worker Flavor for RHOIC Cluster"
}
variable "cluster_worker_count" {
default = "3"
description = "Worker count per Zone for RHOIC Cluster"
}