-
Notifications
You must be signed in to change notification settings - Fork 3
/
variables.tf
37 lines (31 loc) · 954 Bytes
/
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
variable "additional_routes" {
type = list(string)
description = "additional routes to advertise (e.g. \"8.8.8.8/32\")"
default = []
}
variable "name" {
type = string
description = "name for the subnet router and associated resources"
}
variable "security_group_ids" {
type = list(string)
description = "ids of the security groups to attach to the router"
}
variable "subnet_ids" {
type = list(string)
description = "ids of subnets to launch the router in"
}
variable "tailscale_auth_key" {
type = string
sensitive = true
description = "auth key from <https://login.tailscale.com/admin/settings/keys>; used to initially authenticate the router machine"
}
variable "tailscale_version" {
type = string
description = "Tailscale version to deploy"
default = "1.44.0"
}
variable "vpc_id" {
type = string
description = "id of the VPC to launch the router in"
}