-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdev_cluster.tf
28 lines (25 loc) · 950 Bytes
/
dev_cluster.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
module "cluster" {
source = "./modules/cluster"
name = var.cluster_name
datacenter = var.vlan_datacenter
default_pool_size = var.cluster_worker_count
machine_type = var.cluster_machine_type
hardware = var.cluster_hardware
resource_group_name = var.resource_group_name
kube_version = var.cluster_version
public_vlan_id = var.public_vlan_id
private_vlan_id = var.private_vlan_id
entitlement = var.entitlement
}
module "ibm-cloud-operator" {
source = "./modules/ibm-cloud-operator"
cluster_config_path = module.cluster.cluster_config_path
}
module "code-ready-workspace" {
source = "./modules/code-ready-workspace"
cluster_config_path = module.cluster.cluster_config_path
}
module "openshift-pipelines-operator" {
source = "./modules/openshift-pipelines-operator"
cluster_config_path = module.cluster.cluster_config_path
}