From 3debc968a43549d753ccc1c3b1c44b1a9b76c6eb Mon Sep 17 00:00:00 2001 From: Greg Harvey Date: Tue, 23 Dec 2025 13:58:04 +0100 Subject: [PATCH] Fixing documentation for scaleway_private_network module. (#11316) --- plugins/modules/scaleway_private_network.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/scaleway_private_network.py b/plugins/modules/scaleway_private_network.py index 74bdf27232..dd016b0436 100644 --- a/plugins/modules/scaleway_private_network.py +++ b/plugins/modules/scaleway_private_network.py @@ -79,7 +79,7 @@ options: EXAMPLES = r""" - name: Create an private network - community.general.scaleway_vpc: + community.general.scaleway_private_network: project: '{{ scw_project }}' name: 'vpc_one' state: present @@ -87,7 +87,7 @@ EXAMPLES = r""" register: vpc_creation_task - name: Make sure private network with name 'foo' is deleted in region par1 - community.general.scaleway_vpc: + community.general.scaleway_private_network: name: 'foo' state: absent region: par1