Skip to content

Instantly share code, notes, and snippets.

View dcorrea777's full-sized avatar
🐘

Danilo Correa dcorrea777

🐘
View GitHub Profile
@dcorrea777
dcorrea777 / readme.md
Created May 14, 2022 01:39
example-terraform-cloudfront-lambda
default_cache_behavior {
    lambda_function_association {
        event_type   = "origin-response"
        lambda_arn   = "${aws_lambda_function.sso_cloudfront_trigger.arn}:${aws_lambda_function.sso_cloudfront_trigger.version}"
        include_body = false
    }
}   

resource "aws_lambda_function" "sso_cloudfront_trigger" {