From 9d32deaf8afc11e5d4cd5ac2bdf93f43a3fe9975 Mon Sep 17 00:00:00 2001 From: Miguel Nunes Date: Tue, 15 Dec 2020 17:32:05 +0000 Subject: [PATCH] lifecycle_state hardcoded filter parameter lifecycle_state not working because it's hardcoded --- plugins/inventory/oci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/inventory/oci.py b/plugins/inventory/oci.py index 43980e291f..c38fbf0126 100644 --- a/plugins/inventory/oci.py +++ b/plugins/inventory/oci.py @@ -1060,7 +1060,7 @@ def get_filtered_instances(self, compartment_ocid, region): oci_common_utils.list_all_resources( target_fn=compute_client.list_instances, compartment_id=compartment_ocid, - lifecycle_state="RUNNING", + #lifecycle_state="RUNNING", ), compartment_ocid, )