-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
32 lines (24 loc) · 978 Bytes
/
main.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
###
# Kubernetes Umgebung
#
module "master" {
#source = "./terraform-lerncloud-module"
source = "git::https://github.com/mc-b/terraform-lerncloud-multipass"
#source = "git::https://github.com/mc-b/terraform-lerncloud-maas"
#source = "git::https://github.com/mc-b/terraform-lerncloud-lernmaas"
#source = "git::https://github.com/mc-b/terraform-lerncloud-aws"
#source = "git::https://github.com/mc-b/terraform-lerncloud-azure"
#source = "git::https://github.com/mc-b/terraform-lerncloud-proxmox"
module = "modtec-${var.host_no}-${terraform.workspace}"
description = "IoT, Microservices, Machine Learning und DevOps – Moderne architektur-relevante Methoden und Technologien (MODTEC)"
userdata = "cloud-init-modtec.yaml"
cores = 4
memory = 8
storage = 32
# SSH, Kubernetes, NFS
ports = [ 22, 80, 16443, 25000 ]
# MAAS Server Access Info
url = var.url
key = var.key
vpn = var.vpn
}