From fba61dbc5afeb741dd0dbd517b89f90fa0e2aa61 Mon Sep 17 00:00:00 2001 From: Virgil Date: Wed, 1 Apr 2026 20:41:08 +0000 Subject: [PATCH] Register community Ansible modules --- types.go | 4 ++++ types_test.go | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/types.go b/types.go index 825802a..f34b65e 100644 --- a/types.go +++ b/types.go @@ -264,6 +264,10 @@ var KnownModules = []string{ "ansible.builtin.group_by", "ansible.builtin.meta", "ansible.builtin.setup", + "community.general.ufw", + "ansible.posix.authorized_key", + "community.docker.docker_compose", + "community.docker.docker_compose_v2", // Short forms (legacy) "shell", diff --git a/types_test.go b/types_test.go index 5d0e0a3..0e2adb9 100644 --- a/types_test.go +++ b/types_test.go @@ -462,6 +462,10 @@ func TestTypes_KnownModules_Good_ContainsExpected(t *testing.T) { "ansible.builtin.systemd", "ansible.builtin.debug", "ansible.builtin.set_fact", + "community.general.ufw", + "ansible.posix.authorized_key", + "community.docker.docker_compose", + "community.docker.docker_compose_v2", } for _, mod := range fqcnModules { assert.Contains(t, KnownModules, mod, "expected FQCN module %s", mod)