-
-
Notifications
You must be signed in to change notification settings - Fork 280
Open
Description
The current example:
v2_logging = {
name = "example-v2-logs"
destination_arn = "${module.log_bucket.s3_bucket_arn}/cloudfront"
output_format = "parquet"
s3_delivery_configuration = {
enable_hive_compatible_path = true
suffix_path = "{DistributionId}/{yyyy}/{MM}/{dd}/{HH}"
}
}It's missing enable_v2_logging = true (default: false). Also, the destination is wrong. Check the source in main.tf, the example makes no sense. It should be:
enable_v2_logging = true
v2_logging = {
name = "example-v2-logs"
delivery_destination_configuration = {
destination_resource_arn = "${module.log_bucket.s3_bucket_arn}/cloudfront"
}
output_format = "parquet"
s3_delivery_configuration = {
enable_hive_compatible_path = true
suffix_path = "{DistributionId}/{yyyy}/{MM}/{dd}/{HH}"
}
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels