-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
41 lines (33 loc) · 1.37 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
##########################################################
# Author : Jerzy 'Yuri' Kramarz (op7ic) #
# Version : 1.0 #
# Type : Terraform #
# Description : OS.LAB. See README.md for details #
##########################################################
############################################################
# Defualt config for various settings such as LAN segments, location of domain config file etc.
############################################################
variable "system_config_file" {
description = "Path to the primary configuration file for deployment"
default = "config/os-setup.yml"
}
variable "windows_server_subnet_cidr" {
description = "CIDR to use for hosting Windows Servers"
default = "10.0.10.0/24"
}
variable "linux_server_subnet_cidr" {
description = "CIDR to use for hosting Linux/Debian/Ubuntu Servers"
default = "10.0.11.0/24"
}
variable "region" {
description = "AWS region in which resources should be created. See https://aws.amazon.com/about-aws/global-infrastructure/regions_az/"
default = "us-east-1a"
}
variable "resource_group" {
description = "Resource group in which resources should be created"
default = "os-lab"
}
variable "prefix" {
description = "prefix for dynamic hosts"
default = "os-lab"
}