-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
70 lines (57 loc) · 1.42 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
variable "profile" {
description = "Profile name for AWS provider authentication."
type = string
}
variable "region" {
description = "Default region for AWS provider."
type = string
}
variable "aws_access_key" {
description = "AWS access key."
type = string
}
variable "aws_secret_key" {
description = "AWS secret key."
type = string
}
variable "lab_solution_url" {
description = "URL to the lab solution archive."
type = string
}
variable "lab_solution_username" {
description = "Username to access the lab solution archive."
type = string
}
variable "lab_solution_password" {
description = "Password to access the lab solution archive."
type = string
}
variable "enable_registry" {
description = "Whether or not to automatically configure a local registry (Lab 3.2)"
type = bool
default = false
}
variable "vpc_cidr" {
description = "AWS VPC cidr range"
type = string
}
variable "subnet_cidr" {
description = "AWS Subnet cidr range"
type = string
}
variable "subnet_az" {
description = "AWS Subent availability zone"
type = string
}
variable "ec2_instance_type" {
description = "EC2 instance size"
type = string
}
variable "ec2_vol_size" {
description = "EC2 instance volume size"
type = number
}
variable "ec2_vol_type" {
description = "EC2 instance volume type"
type = string
}