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)