File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 1.1.1-rc.1] ( https://github.com/fingerprintjs/terraform-aws-fingerprint-cloudfront-proxy-integration/compare/v1.1.0...v1.1.1-rc.1 ) (2025-07-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * remove usage of deprecated managed_policy_arns attribute ([ 07e97ae] ( https://github.com/fingerprintjs/terraform-aws-fingerprint-cloudfront-proxy-integration/commit/07e97ae7e987c84b644e19bcf06289a015f31e63 ) )
7
+
1
8
## [ 1.1.0] ( https://github.com/fingerprintjs/terraform-aws-fingerprint-cloudfront-proxy-integration/compare/v1.0.1...v1.1.0 ) (2025-05-07)
2
9
3
10
Original file line number Diff line number Diff line change 13
13
14
14
# Fingerprint Pro CloudFront Integration (Terraform module)
15
15
16
- [ Fingerprint] ( https://fingerprint.com/ ) is a device intelligence platform offering 99.5% accurate visitor identification .
16
+ [ Fingerprint] ( https://fingerprint.com/ ) is a device intelligence platform offering industry-leading accuracy .
17
17
18
18
Fingerprint Pro CloudFront Integration is responsible for
19
19
Original file line number Diff line number Diff line change @@ -86,11 +86,15 @@ resource "aws_iam_role_policy" "fpjs_proxy_lambda" {
86
86
})
87
87
}
88
88
89
+ resource "aws_iam_role_policy_attachment" "fpjs_proxy_lambda" {
90
+ role = aws_iam_role. fpjs_proxy_lambda . name
91
+ policy_arn = " arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole"
92
+ }
93
+
89
94
resource "aws_iam_role" "fpjs_proxy_lambda" {
90
95
name = " fingerprint-pro-lambda-role-${ local . integration_id } "
91
96
permissions_boundary = var. fpjs_proxy_lambda_role_permissions_boundary_arn
92
97
assume_role_policy = data. aws_iam_policy_document . assume_role . json
93
- managed_policy_arns = [" arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" ]
94
98
}
95
99
96
100
data "aws_s3_object" "fpjs_integration_s3_bucket" {
You can’t perform that action at this time.
0 commit comments