-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
62 lines (49 loc) · 1.92 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
55
56
57
58
59
60
61
###############################################################
# Author : Jerzy 'Yuri' Kramarz (op7ic) #
# Version : 1.0 #
# Type : Terraform/Ansible #
# Description : Cloud-Investigate. See README.md for details #
# License : See LICENSE 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 "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 = "cloud-investigate-lab"
}
variable "prefix" {
description = "prefix for dynamic hosts"
default = "ci-lab"
}
############################################################
# Host Types to run Windows Server on.
############################################################
variable "server_os" {
description = "DC Operating System"
default = "Windows_Server-2022-English-Full-Base-2022.05.11"
}
variable "server_AMI" {
description = "Server SKU"
default = "ami-0e2c8caa770b20b08"
}
variable "server_size" {
description = "Server size"
default = "t2.xlarge"
}
variable "disk_size" {
description = "Size of the disk used for base OS. Default 1024GB"
default = "1024"
}