This repository has been archived by the owner on Mar 29, 2023. It is now read-only.
v0.4.0
Modules affected
vpc-network
[BACKWARDS INCOMPATIBLE]
Description
This release replaces the deprecated enable_flow_logs
parameter from the vpc-network
module in favor of the new log_config
parameter. log_config
supports specific additional parameters such as aggregation_internal
, flow_sampling
and metadata
.
Migration Guide
You should remove all references to the enable_flow_logs
parameter when using the vpc-network
module and instead replace it with log_config
. Existing networks should set log_config
to the default parameters or customize them based on your needs:
log_config = {
aggregation_interval = "INTERVAL_10_MIN"
flow_sampling = 0.5
metadata = "INCLUDE_ALL_METADATA"
}
Special thanks
Special thanks to @craigedmunds and @0hlov3 for their contributions!