File tree 2 files changed +11
-4
lines changed
2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,11 @@ module "tailscale_subnet_router" {
14
14
context = module. this . context
15
15
tags = module. this . tags
16
16
17
- vpc_id = var. vpc_id
18
- subnet_ids = var. subnet_ids
19
- key_pair_name = var. key_pair_name
20
- create_run_shell_document = var. create_run_shell_document
17
+ vpc_id = var. vpc_id
18
+ subnet_ids = var. subnet_ids
19
+ key_pair_name = var. key_pair_name
20
+ additional_security_group_ids = var. additional_security_group_ids
21
+ create_run_shell_document = var. create_run_shell_document
21
22
22
23
session_logging_kms_key_alias = var. session_logging_kms_key_alias
23
24
session_logging_enabled = var. session_logging_enabled
Original file line number Diff line number Diff line change @@ -12,6 +12,12 @@ variable "subnet_ids" {
12
12
description = " The Subnet IDs which the Tailscale Subnet Router EC2 instance will run in. These *should* be private subnets."
13
13
}
14
14
15
+ variable "additional_security_group_ids" {
16
+ default = []
17
+ type = list (string )
18
+ description = " Additional Security Group IDs to associate with the Tailscale Subnet Router EC2 instance."
19
+ }
20
+
15
21
variable "create_run_shell_document" {
16
22
default = true
17
23
type = bool
You can’t perform that action at this time.
0 commit comments