You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -333,6 +333,15 @@ Terraform version 0.10.3 or newer is required for this module to work.
333
333
| ssmmessages\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for SSMMESSAGES endpoint | string |`"false"`| no |
334
334
| ssmmessages\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for SSMMESSAGES endpoint | list |`[]`| no |
335
335
| ssmmessages\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for SSMMESSAGES endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. | list |`[]`| no |
336
+
| ecs\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for ECS endpoint | string |`"false"`| no |
337
+
| ecs\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for ECS endpoint | list |`[]`| no |
338
+
| ecs\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for ECS endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. | list |`[]`| no |
339
+
| ecs\_agent\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for ECS Agent endpoint | string |`"false"`| no |
340
+
| ecs\_agent\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for ECS Agent endpoint | list |`[]`| no |
341
+
| ecs\_agent\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for ECS Agent endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. | list |`[]`| no |
342
+
| ecs\_telemetry\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for ECS Telemetry endpoint | string |`"false"`| no |
343
+
| ecs\_telemetry\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for ECS Telemetry endpoint | list |`[]`| no |
344
+
| ecs\_telemetry\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for ECS Telemetry endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. | list |`[]`| no |
336
345
| tags | A map of tags to add to all resources | map |`{}`| no |
337
346
| vpc\_tags | Additional tags for the VPC | map |`{}`| no |
338
347
| vpn\_gateway\_id | ID of VPN Gateway to attach to the VPC | string |`""`| no |
@@ -426,6 +435,15 @@ Terraform version 0.10.3 or newer is required for this module to work.
426
435
| vpc\_endpoint\_ssmmessages\_dns\_entry | The DNS entries for the VPC Endpoint for SSMMESSAGES. |
427
436
| vpc\_endpoint\_ssmmessages\_id | The ID of VPC endpoint for SSMMESSAGES |
428
437
| vpc\_endpoint\_ssmmessages\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for SSMMESSAGES. |
438
+
| vpc\_endpoint\_ecs\_dns\_entry | The DNS entries for the VPC Endpoint for ECS. |
439
+
| vpc\_endpoint\_ecs\_id | The ID of VPC endpoint for ECS |
440
+
| vpc\_endpoint\_ecs\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for ECS. |
441
+
| vpc\_endpoint\_ecs\_agent\_dns\_entry | The DNS entries for the VPC Endpoint for ECS Agent. |
442
+
| vpc\_endpoint\_ecs\_agent\_id | The ID of VPC endpoint for ECS Agent |
443
+
| vpc\_endpoint\_ecs\_agent\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for ECS Agent. |
444
+
| vpc\_endpoint\_ecs\_telemetry\_dns\_entry | The DNS entries for the VPC Endpoint for ECS Telemetry. |
445
+
| vpc\_endpoint\_ecs\_telemetry\_id | The ID of VPC endpoint for ECS Telemetry |
446
+
| vpc\_endpoint\_ecs\_telemetry\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for ECS Telemetry. |
429
447
| vpc\_id | The ID of the VPC |
430
448
| vpc\_instance\_tenancy | Tenancy of instances spin up within VPC |
431
449
| vpc\_main\_route\_table\_id | The ID of the main route table associated with this VPC |
description="Should be true if you want to provision a ECS endpoint to the VPC"
349
+
default=false
350
+
}
351
+
352
+
variable"ecs_endpoint_security_group_ids" {
353
+
description="The ID of one or more security groups to associate with the network interface for ECS endpoint"
354
+
default=[]
355
+
}
356
+
357
+
variable"ecs_endpoint_subnet_ids" {
358
+
description="The ID of one or more subnets in which to create a network interface for ECS endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used."
359
+
default=[]
360
+
}
361
+
362
+
variable"ecs_endpoint_private_dns_enabled" {
363
+
description="Whether or not to associate a private hosted zone with the specified VPC for ECS endpoint"
364
+
default=false
365
+
}
366
+
367
+
variable"enable_ecs_agent_endpoint" {
368
+
description="Should be true if you want to provision a ECS Agent endpoint to the VPC"
369
+
default=false
370
+
}
371
+
372
+
variable"ecs_agent_endpoint_security_group_ids" {
373
+
description="The ID of one or more security groups to associate with the network interface for ECS Agent endpoint"
374
+
default=[]
375
+
}
376
+
377
+
variable"ecs_agent_endpoint_subnet_ids" {
378
+
description="The ID of one or more subnets in which to create a network interface for ECS Agent endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used."
description="The ID of one or more security groups to associate with the network interface for ECS Telemetry endpoint"
394
+
default=[]
395
+
}
396
+
397
+
variable"ecs_telemetry_endpoint_subnet_ids" {
398
+
description="The ID of one or more subnets in which to create a network interface for ECS Telemetry endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used."
0 commit comments