Skip to content

Commit

Permalink
Merge branch 'fix-gke-crash-24' of https://github.com/bridgecrewio/ch…
Browse files Browse the repository at this point in the history
…eckov into fix-gke-crash-24
  • Loading branch information
tsmithv11 committed Oct 19, 2024
2 parents 8c7464a + 5e3e211 commit 113a9b4
Show file tree
Hide file tree
Showing 9 changed files with 3,333 additions and 3,103 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# CHANGELOG

## [Unreleased](https://github.com/bridgecrewio/checkov/compare/3.2.266...HEAD)
## [Unreleased](https://github.com/bridgecrewio/checkov/compare/3.2.267...HEAD)

## [3.2.267](https://github.com/bridgecrewio/checkov/compare/3.2.266...3.2.267) - 2024-10-16

- no noteworthy changes

## [3.2.266](https://github.com/bridgecrewio/checkov/compare/3.2.262...3.2.266) - 2024-10-15

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,16 @@ class AppServiceRemoteDebuggingNotEnabled(BaseResourceValueCheck):
def __init__(self) -> None:
name = "Ensure that remote debugging is not enabled for app services"
id = "CKV_AZURE_72"
supported_resources = ('azurerm_app_service', 'azurerm_linux_web_app', 'azurerm_windows_web_app')
supported_resources = ('azurerm_app_service',
'azurerm_linux_function_app',
'azurerm_linux_function_app_slot',
'azurerm_linux_web_app',
'azurerm_linux_web_app_slot',
'azurerm_windows_function_app',
'azurerm_windows_function_app_slot',
'azurerm_windows_web_app',
'azurerm_windows_web_app_slot'
)
categories = (CheckCategories.GENERAL_SECURITY,)
super().__init__(name=name, id=id, categories=categories, supported_resources=supported_resources,
missing_block_result=CheckResult.PASSED)
Expand Down
2 changes: 1 addition & 1 deletion checkov/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '3.2.266'
version = '3.2.267'
4,350 changes: 2,178 additions & 2,172 deletions docs/5.Policy Index/all.md

Large diffs are not rendered by default.

1,702 changes: 854 additions & 848 deletions docs/5.Policy Index/terraform.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion kubernetes/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
checkov==3.2.266
checkov==3.2.267
Loading

0 comments on commit 113a9b4

Please sign in to comment.