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
@@ -269,6 +269,7 @@ Terraform version 0.10.3 or newer is required for this module to work.
269
269
| enable\_ec2messages\_endpoint | Should be true if you want to provision an EC2MESSAGES endpoint to the VPC | string |`"false"`| no |
270
270
| enable\_ecr\_api\_endpoint | Should be true if you want to provision an ecr api endpoint to the VPC | string |`"false"`| no |
271
271
| enable\_ecr\_dkr\_endpoint | Should be true if you want to provision an ecr dkr endpoint to the VPC | string |`"false"`| no |
272
+
| enable\_kms\_endpoint | Should be true if you want to provision a KMS endpoint to the VPC | string |`"false"`| no |
272
273
| enable\_nat\_gateway | Should be true if you want to provision NAT Gateways for each of your private networks | string |`"false"`| no |
273
274
| enable\_public\_redshift | Controls if redshift should have public routing table | string |`"false"`| no |
274
275
| enable\_s3\_endpoint | Should be true if you want to provision an S3 endpoint to the VPC | string |`"false"`| no |
@@ -286,6 +287,9 @@ Terraform version 0.10.3 or newer is required for this module to work.
286
287
| intra\_subnet\_suffix | Suffix to append to intra subnets name | string |`"intra"`| no |
287
288
| intra\_subnet\_tags | Additional tags for the intra subnets | map |`{}`| no |
288
289
| intra\_subnets | A list of intra subnets | list |`[]`| no |
290
+
| kms\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for KMS endpoint | string |`"false"`| no |
291
+
| kms\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for KMS endpoint | list |`[]`| no |
292
+
| kms\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for KMS endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. | list |`[]`| no |
289
293
| manage\_default\_network\_acl | Should be true to adopt and manage Default Network ACL | string |`"false"`| no |
290
294
| manage\_default\_vpc | Should be true to adopt and manage Default VPC | string |`"false"`| no |
291
295
| map\_public\_ip\_on\_launch | Should be false if you do not want to auto-assign public IP on launch | string |`"true"`| no |
@@ -404,6 +408,9 @@ Terraform version 0.10.3 or newer is required for this module to work.
404
408
| vpc\_endpoint\_ecr\_dkr\_dns\_entry | The DNS entries for the VPC Endpoint for ECR DKR. |
405
409
| vpc\_endpoint\_ecr\_dkr\_id | The ID of VPC endpoint for ECR DKR |
406
410
| vpc\_endpoint\_ecr\_dkr\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for ECR DKR. |
411
+
| vpc\_endpoint\_kms\_dns\_entry | The DNS entries for the VPC Endpoint for KMS. |
412
+
| vpc\_endpoint\_kms\_id | The ID of VPC endpoint for KMS |
413
+
| vpc\_endpoint\_kms\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for KMS. |
407
414
| vpc\_endpoint\_s3\_id | The ID of VPC endpoint for S3 |
408
415
| vpc\_endpoint\_s3\_pl\_id | The prefix list for the S3 VPC endpoint. |
409
416
| vpc\_endpoint\_ssm\_dns\_entry | The DNS entries for the VPC Endpoint for SSM. |
description="Should be true if you want to provision a KMS endpoint to the VPC"
329
+
default=false
330
+
}
331
+
332
+
variable"kms_endpoint_security_group_ids" {
333
+
description="The ID of one or more security groups to associate with the network interface for KMS endpoint"
334
+
default=[]
335
+
}
336
+
337
+
variable"kms_endpoint_subnet_ids" {
338
+
description="The ID of one or more subnets in which to create a network interface for KMS endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used."
339
+
default=[]
340
+
}
341
+
342
+
variable"kms_endpoint_private_dns_enabled" {
343
+
description="Whether or not to associate a private hosted zone with the specified VPC for KMS endpoint"
344
+
default=false
345
+
}
346
+
331
347
variable"map_public_ip_on_launch" {
332
348
description="Should be false if you do not want to auto-assign public IP on launch"
0 commit comments