-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathvariables.tf
More file actions
40 lines (32 loc) · 845 Bytes
/
variables.tf
File metadata and controls
40 lines (32 loc) · 845 Bytes
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
variable "vpc_id" {
description = "the id of the VPC to deploy the instance into"
}
variable "subnet_ids" {
description = "the ids of the subnet of the subnets to deploy the instance into"
}
variable "tags" {
description = "tags to apply to the resources"
default = {}
type = map(string)
}
variable "key_name" {
description = "Name of AWS key pair"
}
variable "name" {
description = "Name of the resources"
default = "ooni-backendproxy"
}
variable "instance_type" {
default = "t2.micro"
}
variable "proxy_pass_url" {
description = "URL to pass to the proxy_pass directive"
}
variable "nginx_extra_nginx_config" {
description = "extra configuration to pass to nginx"
default = ""
}
variable "nginx_extra_path_config" {
description = "extra configuration to pass to nginx"
default = ""
}