Hi Wei
On Sun, 2026-08-02 at 16:24 +0200, Wei ZHOU wrote:
> Thanks Rene !
>
> Quick question, we have some codes which works with old ansible
> version,
> like
>
> - name: Build management server
> local_action:
> module: cs_instance
> name: "{{ item }}"
>
>
> must we change to the following ?
>
> ngine_io.cloudstack.instance:
Short Anwser:
For 3.1.0, yes. the cs_ prefix has been dropped.
Long answer:
It's recommended to use fully qualified collection names (fqcn) for
each module.
- name: Build management server
local_action:
module: ngine_io.cloudstack.instance
name: "{{ item }}"
or as sed command:
sed -i 's/module: cs_/module: ngine_io.cloudstack./g' ./playbooks/*.yml
should to the trick.
René