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
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -387,7 +387,7 @@ Please see our [developer documentation](https://github.com/aws-ia/terraform-aws
387
387
| <aname="input_vpc_egress_only_internet_gateway"></a> [vpc\_egress\_only\_internet\_gateway](#input\_vpc\_egress\_only\_internet\_gateway)| Set to use the Egress-only Internet gateway for all IPv6 traffic going to the Internet. |`bool`|`false`| no |
388
388
| <aname="input_vpc_enable_dns_hostnames"></a> [vpc\_enable\_dns\_hostnames](#input\_vpc\_enable\_dns\_hostnames)| Indicates whether the instances launched in the VPC get DNS hostnames. If enabled, instances in the VPC get DNS hostnames; otherwise, they do not. Disabled by default for nondefault VPCs. |`bool`|`true`| no |
389
389
| <aname="input_vpc_enable_dns_support"></a> [vpc\_enable\_dns\_support](#input\_vpc\_enable\_dns\_support)| Indicates whether the DNS resolution is supported for the VPC. If enabled, queries to the Amazon provided DNS server at the 169.254.169.253 IP address, or the reserved IP address at the base of the VPC network range "plus two" succeed. If disabled, the Amazon provided DNS service in the VPC that resolves public DNS hostnames to IP addresses is not enabled. Enabled by default. |`bool`|`true`| no |
390
-
| <aname="input_vpc_flow_logs"></a> [vpc\_flow\_logs](#input\_vpc\_flow\_logs)| Whether or not to create VPC flow logs and which type. Options: "cloudwatch", "s3", "none". By default creates flow logs to `cloudwatch`. Variable overrides null value types for some keys, defined in defaults.tf. | <pre>object({<br> log_destination = optional(string)<br> iam_role_arn = optional(string)<br> kms_key_id = optional(string)<br><br> log_destination_type = string<br> retention_in_days = optional(number)<br> tags = optional(map(string))<br> traffic_type = optional(string, "ALL")<br> destination_options = optional(object({<br> file_format = optional(string, "plain-text")<br> hive_compatible_partitions = optional(bool, false)<br> per_hour_partition = optional(bool, false)<br> }))<br> })</pre> | <pre>{<br> "log_destination_type": "none"<br>}</pre> | no |
390
+
| <aname="input_vpc_flow_logs"></a> [vpc\_flow\_logs](#input\_vpc\_flow\_logs)| Whether or not to create VPC flow logs and which type. Options: "cloudwatch", "s3", "none". By default creates flow logs to `cloudwatch`. Variable overrides null value types for some keys, defined in defaults.tf. | <pre>object({<br> name_override = optional(string, "")<br> log_destination = optional(string)<br> iam_role_arn = optional(string)<br> kms_key_id = optional(string)<br><br> log_destination_type = string<br> retention_in_days = optional(number)<br> tags = optional(map(string))<br> traffic_type = optional(string, "ALL")<br> destination_options = optional(object({<br> file_format = optional(string, "plain-text")<br> hive_compatible_partitions = optional(bool, false)<br> per_hour_partition = optional(bool, false)<br> }))<br> })</pre> | <pre>{<br> "log_destination_type": "none"<br>}</pre> | no |
391
391
| <aname="input_vpc_id"></a> [vpc\_id](#input\_vpc\_id)| VPC ID to use if not creating VPC. |`string`|`null`| no |
392
392
| <aname="input_vpc_instance_tenancy"></a> [vpc\_instance\_tenancy](#input\_vpc\_instance\_tenancy)| The allowed tenancy of instances launched into the VPC. |`string`|`"default"`| no |
393
393
| <aname="input_vpc_ipv4_ipam_pool_id"></a> [vpc\_ipv4\_ipam\_pool\_id](#input\_vpc\_ipv4\_ipam\_pool\_id)| Set to use IPAM to get an IPv4 CIDR block. |`string`|`null`| no |
@@ -407,6 +407,7 @@ Please see our [developer documentation](https://github.com/aws-ia/terraform-aws
407
407
| <aname="output_core_network_attachment"></a> [core\_network\_attachment](#output\_core\_network\_attachment)| AWS Cloud WAN's core network attachment. Full output of aws\_networkmanager\_vpc\_attachment. |
408
408
| <aname="output_core_network_subnet_attributes_by_az"></a> [core\_network\_subnet\_attributes\_by\_az](#output\_core\_network\_subnet\_attributes\_by\_az)| Map of all core\_network subnets containing their attributes.<br><br>Example:<pre>core_network_subnet_attributes_by_az = {<br> "us-east-1a" = {<br> "arn" = "arn:aws:ec2:us-east-1:<>:subnet/subnet-04a86315c4839b519"<br> "assign_ipv6_address_on_creation" = false<br> ...<br> <all attributes of subnet: https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/subnet#attributes-reference><br> }<br> "us-east-1b" = {...)<br>}</pre> |
409
409
| <aname="output_egress_only_internet_gateway"></a> [egress\_only\_internet\_gateway](#output\_egress\_only\_internet\_gateway)| Egress-only Internet gateway attributes. Full output of aws\_egress\_only\_internet\_gateway. |
| <aname="output_internet_gateway"></a> [internet\_gateway](#output\_internet\_gateway)| Internet gateway attributes. Full output of aws\_internet\_gateway. |
Copy file name to clipboardExpand all lines: examples/public_private_flow_logs/README.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,5 +39,10 @@ At this point, only cloud-watch logs are support, pending: https://github.com/aw
39
39
40
40
## Outputs
41
41
42
-
No outputs.
42
+
| Name | Description |
43
+
|------|-------------|
44
+
| <aname="output_log_name"></a> [log\_name](#output\_log\_name)| Name of the flow log. |
45
+
| <aname="output_private_subnets"></a> [private\_subnets](#output\_private\_subnets)| Map of private subnet attributes grouped by az. |
46
+
| <aname="output_private_subnets_tags_length"></a> [private\_subnets\_tags\_length](#output\_private\_subnets\_tags\_length)| Count of private subnet tags for a single az. |
47
+
| <aname="output_public_subnets_tags_length"></a> [public\_subnets\_tags\_length](#output\_public\_subnets\_tags\_length)| Count of public subnet tags for a single az. |
Copy file name to clipboardExpand all lines: variables.tf
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -262,6 +262,7 @@ variable "vpc_flow_logs" {
262
262
description="Whether or not to create VPC flow logs and which type. Options: \"cloudwatch\", \"s3\", \"none\". By default creates flow logs to `cloudwatch`. Variable overrides null value types for some keys, defined in defaults.tf."
0 commit comments