-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvariables.tf
More file actions
46 lines (40 loc) · 1.24 KB
/
variables.tf
File metadata and controls
46 lines (40 loc) · 1.24 KB
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
variable "aws_region" {
description = "AWS region"
type = string
default = "us-east-2"
}
variable "custom_security_group_ingress" {
description = "Additional Security Group ingress rules to be appended to defaults. Useful if you need to punch holes open for inconsistent public IPs of participants"
type = list(object({
from_port = number,
to_port = number,
protocol = string,
description = string,
cidr_blocks = string
}))
default = []
}
variable "event_name" {
description = "Name of the event that the workshop is being run for, e.g. 'STL-Public-Library-Hackathon'"
type = string
}
variable "num_teams" {
description = "How many teams will be participating in the workshop"
type = number
default = 1
}
variable "ssh_local_key_path" {
description = "Local path to the admin's SSH public (NOT private) key for instance access"
type = string
default = "~/.ssh/id_rsa.pub"
}
variable "create_dns" {
description = "Whether to create a Route53 DNS zone for the workshop instances"
type = bool
default = false
}
variable "zone_name" {
description = "Route53 zone name to use for workshop instances"
type = string
default = null
}