get_k8s_resource_misconfig
Identify and analyze specific Kubernetes resource misconfigurations by providing cluster and misconfiguration IDs. Part of RAD Security's AI-powered tools for enhancing Kubernetes and cloud environment security.
Instructions
Get detailed information about a specific Kubernetes resource misconfiguration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cluster_id | Yes | ID of the cluster to get misconfiguration for | |
misconfig_id | Yes | ID of the misconfiguration to get details for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cluster_id": {
"description": "ID of the cluster to get misconfiguration for",
"type": "string"
},
"misconfig_id": {
"description": "ID of the misconfiguration to get details for",
"type": "string"
}
},
"required": [
"cluster_id",
"misconfig_id"
],
"type": "object"
}