Skip to content

Commit

Permalink
Cleanup of AWS::IAM::Group
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong committed Aug 5, 2024
1 parent 88908a4 commit 015b67c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"path": "/definitions/Policy/properties/PolicyDocument",
"value": {
"type": [
"object"
"object",
"string"
]
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"properties": {
"PolicyDocument": {
"type": [
"object"
"object",
"string"
]
},
"PolicyName": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"properties": {
"PolicyDocument": {
"type": [
"object"
"object",
"string"
]
},
"PolicyName": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"properties": {
"PolicyDocument": {
"type": [
"object"
"object",
"string"
]
},
"PolicyName": {
Expand Down
3 changes: 0 additions & 3 deletions src/cfnlint/schema/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,9 +448,6 @@ def _patch_provider_schema(
str(e),
)
except Exception as e: # pylint: disable=broad-exception-caught
print(
"Exception", type(e), e, os.path.join(append_dir, file_path)
)
LOGGER.info(
"Unknown exception raised applying patch %s: %s",
os.path.join(append_dir, file_path),
Expand Down

0 comments on commit 015b67c

Please sign in to comment.