Get the deployment group resources again after CREATE_COMPLETE
We seem to get the list of group resources for signaling (there
is possibility that resource_id is not set for some resources)
and then use the same list to get the deployments. It would be
good to get the resources again after they are created.
Change-Id: I908d1d13abe8e59a65308e883591abca2b1c7a9a
Partial-Bug: #1625921
diff --git a/functional/test_software_deployment_group.py b/functional/test_software_deployment_group.py
index 4e8b868..06f0ce1 100644
--- a/functional/test_software_deployment_group.py
+++ b/functional/test_software_deployment_group.py
@@ -94,7 +94,11 @@
signal_required=True,
resources_to_signal=group_resources)
- self.check_input_values(group_resources, 'foo', 'foo_input')
+ created_group_resources = self.list_group_resources(
+ stack_identifier, 'deployment', minimal=False)
+
+ self.check_input_values(created_group_resources,
+ 'foo', 'foo_input')
self.update_stack(stack_identifier,
template=template,