# Cis K8S V1111 1.1.12

> Ensure that the etcd data directory ownership is set to etcd:etcd (Automated)

- Skill: `cyberstrikeus/cis-k8s-v1111-1-1-12` (Agent Skill)
- Install (CLI): `npx skillmds@latest add cyberstrikeus/cis-k8s-v1111-1-1-12`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cyberstrikeus/cis-k8s-v1111-1-1-12/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: cyberstrikeus (https://skillmd.com/u/cyberstrikeus)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/cyberstrikeus/cis-k8s-v1111-1-1-12

---


# CIS Kubernetes Benchmark v1.11.1 - Control 1.1.12

## Profile Applicability

- **Level:** 1 - Master Node

## Description

Ensure that the etcd data directory ownership is set to `etcd:etcd`.

## Rationale

etcd is a highly-available key-value store used by Kubernetes deployments for persistent storage of all of its REST API objects. This data directory should be protected from any unauthorized reads or writes. It should be owned by `etcd:etcd`.

## Impact

None

## Audit

On the etcd server node, get the etcd data directory, passed as an argument `--data-dir`, from the below command:

```bash
ps -ef | grep etcd
```

Run the below command (based on the etcd data directory found above). For example,

```bash
stat -c %U:%G /var/lib/etcd
```

Verify that the ownership is set to `etcd:etcd`.

## Remediation

On the etcd server node, get the etcd data directory, passed as an argument `--data-dir`, from the below command:

```bash
ps -ef | grep etcd
```

Run the below command (based on the etcd data directory found above). For example,

```bash
chown etcd:etcd /var/lib/etcd
```

## Default Value

By default, etcd data directory ownership is set to `etcd:etcd`.

## References

1. https://coreos.com/etcd/docs/latest/op-guide/configuration.html#data-dir
2. https://kubernetes.io/docs/admin/etcd/

## CIS Controls

| Controls Version | Control                                                                                                                                                                                                                                           | IG 1 | IG 2 | IG 3 |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---- | ---- | ---- |
| v8               | 3.3 Configure Data Access Control Lists<br/>Configure data access control lists based on a user's need to know. Apply data access control lists, also known as access permissions, to local and remote file systems, databases, and applications. | ●    | ●    | ●    |
| v7               | 16 Account Monitoring and Control<br/>Account Monitoring and Control                                                                                                                                                                              |      |      |      |

