Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(custom-resource): provider framework lambda missing GetFunction permission #33313

Closed
wants to merge 11 commits into from
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Until this is fixed, it is best to just set the whole repository to be LF.
* eol=lf
*.gif binary
*.zip binary
*.zip filter=lfs diff=lfs merge=lfs -text
*.png binary
*.jpg binary
*.tgz binary
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@
{
"Fn::Sub": "cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}"
},
"/9f9e7436ed98342a4f1f0b598ef9976aa52d9ad4f145e5ef3b06928a267551fd.json"
"/1b09badc4e19e59ec158617bd51789ee6ed15cfe942f7a98932d5b6a3a0a0e56.json"
]
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,24 @@
}
]
},
{
"Action": "lambda:GetFunction",
"Effect": "Allow",
"Resource": [
{
"Fn::GetAtt": [
"IsCompleteHandler7073F4DA",
"Arn"
]
},
{
"Fn::GetAtt": [
"OnEventHandler42BEBAE0",
"Arn"
]
}
]
},
{
"Action": "states:StartExecution",
"Effect": "Allow",
Expand Down Expand Up @@ -570,6 +588,24 @@
]
}
]
},
{
"Action": "lambda:GetFunction",
"Effect": "Allow",
"Resource": [
{
"Fn::GetAtt": [
"IsCompleteHandler7073F4DA",
"Arn"
]
},
{
"Fn::GetAtt": [
"OnEventHandler42BEBAE0",
"Arn"
]
}
]
}
],
"Version": "2012-10-17"
Expand Down Expand Up @@ -712,6 +748,24 @@
]
}
]
},
{
"Action": "lambda:GetFunction",
"Effect": "Allow",
"Resource": [
{
"Fn::GetAtt": [
"IsCompleteHandler7073F4DA",
"Arn"
]
},
{
"Fn::GetAtt": [
"OnEventHandler42BEBAE0",
"Arn"
]
}
]
}
],
"Version": "2012-10-17"
Expand Down
Loading
Loading