-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
79 lines (64 loc) · 1.85 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
variable "python_version" {
description = "Desired version of Python"
default = "3.7.2"
}
variable "git_for_win_version" {
description = "Desired version of Git for Windows"
default = "2.21.0"
}
variable "aws_region" {
description = "AWS Region"
default = "us-east-1"
}
variable "az_to_find_subnet" {
description = "Used to find the default subnet (ignored if subnet_id is provided)"
default = "us-east-1c"
}
variable "subnet_id" {
description = "ID of subnet to use (or default if blank)"
default = ""
}
variable "windows_version" {
description = "Version of Windows Server to use (options are 2008, 2012, 2016)"
default = "2016"
}
variable "adm_user" {
description = "User name of the admin account"
default = "Administrator"
}
variable "instance_profile" {
description = "IAM profile used for launching the instance"
default = ""
}
variable "assign_public_ip" {
description = "Whether to assign a public IP"
default = "false"
}
variable "instance_type" {
description = "EC2 instance type"
default = "t2.medium"
}
variable "userdata_log" {
description = "Where to log results of instance initialization"
default = "C:\\Temp\\userdata.log"
}
variable "create_key_files" {
description = "Whether to create public and private key files in .godsaker/"
default = "true"
}
variable "name_prefix" {
description = "Prefix used in naming and tagging resources"
default = "godsaker"
}
variable "pypi_url" {
description = "PyPI URL to use for downloading Python packages"
default = "https://pypi.org/simple"
}
variable "download_dir" {
description = "Directory on EC2 instance for downloading binaries"
default = "C:\\Users\\Administrator\\Downloads"
}
variable "temp_dir" {
description = "Directory on EC2 instance for temporary files"
default = "C:\\Temp"
}