-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
32 lines (24 loc) · 896 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
###
# GNS3 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 = "gns3-${var.host_no}-${terraform.workspace}"
description = "Graphical Network Simulator-3 - Netzwerk-Software-Emulator,"
userdata = "cloud-init-gns3.yaml"
cores = 2
memory = 16
storage = 64
# SSH, GNS3 Web UI
ports = [ 22, 3080 ]
# MAAS Server Access Info
url = var.url
key = var.key
vpn = var.vpn
}