Skip to content

feat: support force (-f) option for deletion of Retain resources#486

Merged
go-to-k merged 37 commits intomainfrom
deletion-retain-resources
May 19, 2025
Merged

feat: support force (-f) option for deletion of Retain resources#486
go-to-k merged 37 commits intomainfrom
deletion-retain-resources

Conversation

@go-to-k
Copy link
Copy Markdown
Owner

@go-to-k go-to-k commented May 16, 2025

REPLACE THIS TEXT BLOCK

Describe the reason for this change, what the solution is, and any
important design decisions you made.

Closes #485

TODO

@go-to-k
Copy link
Copy Markdown
Owner Author

go-to-k commented May 16, 2025

  • Resources:
      MyTopic:
        DeletionPolicy: Retain
  • Resources:
      MyTopic:
        DeletionPolicy: "Retain"
  • Resources:
      MyTopic:
        DeletionPolicy: 'Retain'
  • Resources:
      MyTopic:
        "DeletionPolicy": "Retain"
  • Resources:
      MyTopic:
        'DeletionPolicy': 'Retain'
  • Resources:
      MyTopic:
        DeletionPolicy:
          Retain
  • Resources:
      MyTopic:
        "DeletionPolicy":
          "Retain"
  • Resources:
      MyTopic:
        'DeletionPolicy':
          'Retain'
  • {
      "Resources": {
        "MyTopic": {
          "DeletionPolicy": "Retain",
          "Type":"AWS::SecretsManager::Secret"
        }
      }
    }
  • {
      "Resources": {
        "MyTopic": {
          "Type":"AWS::SecretsManager::Secret",
          "DeletionPolicy": "Retain"
        }
      }
    }
  • {"Resources":{"MyTopic":{"DeletionPolicy":"Retain", "Type": "AWS::SecretsManager::Secret"}}}
  • {"Resources":{"MyTopic":{"Type": "AWS::SecretsManager::Secret", "DeletionPolicy":"Retain"}}}

@go-to-k go-to-k changed the title feat: support force option for deletion of Retain resources feat: support force (-f) option for deletion of Retain resources May 17, 2025
@go-to-k go-to-k merged commit a5b2883 into main May 19, 2025
6 checks passed
@go-to-k go-to-k deleted the deletion-retain-resources branch May 19, 2025 11:36
@github-actions github-actions bot mentioned this pull request May 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Feature] Support -f option for deletion of Retain resources

1 participant