-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
Do not throw error when lambda permission is deleted after function #6770
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -301,6 +301,13 @@ func resourceAwsLambdaPermissionDelete(d *schema.ResourceData, meta interface{}) | |
log.Printf("[DEBUG] Removing Lambda permission: %s", input) | ||
_, err := conn.RemovePermission(&input) | ||
if err != nil { | ||
// Missing whole policy or Lambda function (API error) | ||
if awsErr, ok := err.(awserr.Error); ok { | ||
if awsErr.Code() == "ResourceNotFoundException" { | ||
log.Printf("[WARN] No Lambda Permission Policy found: %v", input) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: We prefer to skip logging that an API object is missing when Terraform is already trying to delete it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bflad Thanks for the heads up. Will remember it :) |
||
return nil | ||
} | ||
} | ||
return err | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: We prefer to use our helper function to determine these and use the SDK provided constants: