Skip to content

Commit

Permalink
Merge pull request #139 from YikaiHu/main
Browse files Browse the repository at this point in the history
fix: Fix the processor Lambda function urllib3 version issue
  • Loading branch information
YikaiHu authored Jul 5, 2023
2 parents e47a9ad + d538be9 commit d1efa83
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.3] - 2023-06-28
### Fixed
- Fix the processor Lambda function urllib3 version issue

## [1.0.2] - 2023-06-21
### Fixed
- Fix the EKS Fluent-Bit deployment configuration generation issue
Expand Down
7 changes: 7 additions & 0 deletions NOTICE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,10 @@ THIRD PARTY COMPONENTS
This software includes third party software subject to the following copyrights:

AWS SDK under the Apache License Version 2.0
user-agents under the Apache License Version 2.0
maxminddb under the Apache License Version 2.0
requests-aws4auth under the Apache License Version 2.0
urllib3 under the MIT License
requests under the Apache License Version 2.0
boto3 under the Apache License Version 2.0
botocore under the Apache License Version 2.0
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
requests
requests-aws4auth
requests-aws4auth~=1.2.3
urllib3~=1.26.7
requests~=2.31.0
boto3~=1.26.160
botocore~=1.29.160
11 changes: 7 additions & 4 deletions source/constructs/lambda/plugin/standard/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
user-agents
maxminddb
requests
requests-aws4auth
user-agents~=2.2.0
maxminddb~=2.3.0
requests-aws4auth~=1.2.3
urllib3~=1.26.7
requests~=2.31.0
boto3~=1.26.160
botocore~=1.29.160
2 changes: 1 addition & 1 deletion source/constructs/lib/subaccount/cross-account-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ export class CrossAccount extends Stack {
new iam.PolicyStatement({
sid: "EKSPolicy1",
effect: iam.Effect.ALLOW,
actions: ["iam:GetOpenIDConnectProvider"],
actions: ["iam:GetOpenIDConnectProvider", "iam:TagOpenIDConnectProvider", "iam:CreateOpenIDConnectProvider"],
resources: [
`arn:${Aws.PARTITION}:iam::${Aws.ACCOUNT_ID}:oidc-provider/oidc.eks.*`,
],
Expand Down

0 comments on commit d1efa83

Please sign in to comment.