Skip to content

App Configuration Public Access Enabled

Description

Code Example

terraform
resource "azurerm_app_configuration" "example" {
  name                = "example-app-configuration"
  location            = azurerm_resource_group.example.location
  resource_group_name = azurerm_resource_group.example.name
  
  # ... other configurations ...

+ public_network_access = "Disabled"  // Ensure public access is disabled
}

Remediation

Terraform

Resource:

  • azurerm_app_configuration

Arguments:

  • public_network_access

Rule Details

FieldValue
IDIAC-0692
SeverityHIGH
IaC TypeTerraform
FrameworksTerraform,
Checkov IDCKV_AZURE_185

References