Skip to content

Commit

Permalink
RetainExceptOnCreate DeletionPolicy (#2834)
Browse files Browse the repository at this point in the history
  • Loading branch information
PatMyron authored Aug 1, 2023
1 parent 1c5256b commit e47061c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cfnlint/rules/resources/DeletionPolicy.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def check_value(self, key, path, res_type):
"""Check resource names for DeletionPolicy"""
matches = []

valid_values = ["Delete", "Retain", "Snapshot"]
valid_values = ["Delete", "Retain", "RetainExceptOnCreate", "Snapshot"]

supported_functions = ["Fn::FindInMap", "Fn::If", "Ref"]

Expand Down

0 comments on commit e47061c

Please sign in to comment.