Skip to content

Commit

Permalink
Rename attribute for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-fillmore committed Sep 6, 2024
1 parent ed302c8 commit 39d9221
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions odc_eks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ module "odc_eks" {
waf_url_whitelist_url_host = app.example.domain.com
# VPC Flow Logs
create_vpc_flow_logs = true
create_flow_log = true
flow_log_max_aggregation_interval = 60
flow_log_traffic_type = "ALL"
flow_log_file_format = "plain-text"
Expand Down Expand Up @@ -170,7 +170,7 @@ module "odc_eks" {
| enable_custom_cluster_log_group | Create a custom CloudWatch Log Group for the cluster. If you supply `enabled_cluster_log_types` but leave this false, EKS will create a log group automatically with default retention values. | bool | false | No |
| log_retention_period | Specifies the number of days to retain cluster log event in CloudWatch, if enabled by `enable_custom_cluster_log_group` | number | 30 | No |
| metadata_options | Metadata options for the EKS node launch templates. See https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/launch_template#metadata-options. | map(any) | {} | No |
| create_vpc_flow_logs | Whether to create VPC flow logs. | bool | false | No |
| create_flow_log | Whether to create VPC flow logs. | bool | false | No |
| flow_log_max_aggregation_interval | The maximum interval of time during which a flow of packets is captured and aggregated into a flow log record. Valid Values: `60` seconds or `600` seconds | number | 600 | No |
| flow_log_traffic_type | The type of traffic to capture. Valid values: ACCEPT, REJECT, ALL | string | ALL | No |
| flow_log_file_format | The format for the flow log. Valid values: `plain-text`, `parquet` | string | plain-text | No |
Expand Down
2 changes: 1 addition & 1 deletion odc_eks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ variable "create_igw" {
default = true
}

variable "create_vpc_flow_logs" {
variable "create_flow_log" {
type = bool
description = "Whether to create VPC flow logs. Default is set to 'false'"
default = false
Expand Down

0 comments on commit 39d9221

Please sign in to comment.