> For the complete documentation index, see [llms.txt](https://cortex-docs.paloaltonetworks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cortex-docs.paloaltonetworks.com/appsec-rules/iac-security/networking/appsec-ali-26.md).

# Alibaba Cloud Kubernetes does not install plugin Terway or Flannel to support standard policies misc

## Rule Details

|                        |                               |
| ---------------------- | ----------------------------- |
| Cortex AppSec Rule ID  | APPSEC\_ALI\_26               |
| Category - Subcategory | Kubernetes - Network Policies |
| Provider               | ALIBABA\_CLOUD                |
| Severity               | LOW                           |
| Framework              | Terraform                     |

## Impact

This rule ensures that Kubernetes clusters on Alibaba Cloud are configured with either the Terway or Flannel CNI (Container Network Interface) plugin to support standard Kubernetes network policies. These plugins enable advanced networking features, such as isolation and traffic management, which are critical for secure and efficient cluster operations.

Failing to install and configure these plugins can lead to suboptimal networking and security, reducing the cluster's ability to enforce Kubernetes network policies.

## How to Fix

*Resource:* alicloud\_cs\_kubernetes

* *Arguments:* pod\_vswitch\_ids, pod\_cidr, addons

To mitigate this issue, ensure that either the `Terway` plugin is installed with correctly configured `pod_vswitch_ids` or the `Flannel` plugin is installed with a defined `pod_cidr`.

Example (Terway):

## Example (Flannel): \[source,go]

resource "alicloud\_cs\_kubernetes" "example" { name = "example-cluster" cluster\_network\_type = "terway-eniip" pod\_vswitch\_ids = \["vsw-123456"] worker\_vswitch\_ids = \["vsw-654321"] master\_vswitch\_ids = \["vsw-789012"]

## addons { name = "terway-eniip" } }

resource "alicloud\_cs\_kubernetes" "example" { name = "example-cluster" cluster\_network\_type = "flannel" pod\_cidr = "192.168.0.0/16"

## addons { name = "flannel" } }


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://cortex-docs.paloaltonetworks.com/appsec-rules/iac-security/networking/appsec-ali-26.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
