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

Do not throw error when lambda permission is deleted after function #6770

Merged

Conversation

Puneeth-n
Copy link
Contributor

@Puneeth-n Puneeth-n commented Dec 7, 2018

Fixes #6769

@ghost ghost added size/XS Managed by automation to categorize the size of a PR. service/lambda Issues and PRs that pertain to the lambda service. labels Dec 7, 2018
@Puneeth-n Puneeth-n changed the title Do not throw error when lambda permission is deleted after deleting l… Do not throw error when lambda permission is deleted after function Dec 7, 2018
Copy link
Contributor

@bflad bflad left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks @Puneeth-n 🚀

@@ -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" {
Copy link
Contributor

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:

if isAWSErr(err, lambda.ErrCodeResourceNotFoundException, "") {

// 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)
Copy link
Contributor

Choose a reason for hiding this comment

The 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.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bflad Thanks for the heads up. Will remember it :)

@bflad bflad added the bug Addresses a defect in current functionality. label Dec 11, 2018
@bflad bflad added this to the v1.52.0 milestone Dec 11, 2018
@bflad bflad merged commit a398691 into hashicorp:master Dec 11, 2018
bflad added a commit that referenced this pull request Dec 11, 2018
@Puneeth-n Puneeth-n deleted the fix/lambda-permission-deletion-failure branch December 12, 2018 10:23
@bflad
Copy link
Contributor

bflad commented Dec 13, 2018

This has been released in version 1.52.0 of the AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.

@ghost
Copy link

ghost commented Apr 1, 2020

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!

@ghost ghost locked and limited conversation to collaborators Apr 1, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Addresses a defect in current functionality. service/lambda Issues and PRs that pertain to the lambda service. size/XS Managed by automation to categorize the size of a PR.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Terraform throws error when deleting lambda permission after lambda function has been deleted
2 participants