From 9ef1c94855eb811265cb969bc7b0e2a3db9ea6c4 Mon Sep 17 00:00:00 2001 From: Christoph Date: Fri, 27 Mar 2026 15:25:47 +0100 Subject: [PATCH] Add devcontainer configuration for Ansible development environment --- .devcontainer/devcontainer.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..7992c62 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,16 @@ +{ + "name": "Ansible Development", + "image": "mcr.microsoft.com/devcontainers/python:3.12", + "features": { + "ghcr.io/devcontainers/features/ansible:1": {} + }, + "customizations": { + "vscode": { + "extensions": [ + "redhat.ansible", + "ms-python.python" + ] + } + }, + "postCreateCommand": "pip install ansible-lint" +} \ No newline at end of file