Last active
July 23, 2024 14:40
-
-
Save mdlavin/1b8fcc1b05932f6c105fb7c4ad34c204 to your computer and use it in GitHub Desktop.
Terraform configuration to enable X-Ray for a Lambda function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "aws_lambda_function" "service" { | |
# Your usual aws_lambda_function configuration settings here | |
tracing_config { | |
mode = "Active" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
yes me also. I had to change it to "PassThrough" to turn it of. I'm not sure if this is the right workaround.