When executing playbook with --check flag, oci_object_storage_object is throwing error because destination folder does not exist. This is true because --check is preventing the destination folder from being created (i.e. module ansible.builtin.fileis properly respecting check-mode so not creating the folder).
Expected behavior
When --check flag is set I expect oci_object_storage_object module to not actually download the object being referenced.
Issue Report
When executing playbook with
--check
flag,oci_object_storage_object
is throwing error because destination folder does not exist. This is true because--check
is preventing the destination folder from being created (i.e. moduleansible.builtin.file
is properly respecting check-mode so not creating the folder).Expected behavior When
--check
flag is set I expectoci_object_storage_object
module to not actually download the object being referenced.Environment
OS version:
macOS 14.3.1
Ansible version:
OCI Python SDK version:
2.125.0
OCI Ansible Modules version:
oracle.oci 4.43.0
Ansible playbook to reproduce the issue