From 7b734744ca059e62a9631a9c36632416b21274a1 Mon Sep 17 00:00:00 2001 From: Jay Dobies Date: Tue, 17 May 2016 14:33:49 -0400 Subject: [PATCH] Clarified servers property description for SoftwareDeploymentGroup The description was a bit misleading in that it made it sound like the name for each name/ID pair had to correspond to something in Nova. The name can be anything, so the docs have been updated to reflect its usage. Change-Id: I36f0082b49d48be565fbc0020b58e8b5cac54ba7 --- heat/engine/resources/openstack/heat/software_deployment.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/heat/engine/resources/openstack/heat/software_deployment.py b/heat/engine/resources/openstack/heat/software_deployment.py index a84c8c6f57..2984471d6c 100644 --- a/heat/engine/resources/openstack/heat/software_deployment.py +++ b/heat/engine/resources/openstack/heat/software_deployment.py @@ -600,7 +600,9 @@ class SoftwareDeploymentGroup(resource_group.ResourceGroup): properties_schema = { SERVERS: properties.Schema( properties.Schema.MAP, - _('A map of Nova names and IDs to apply configuration to.'), + _('A map of names and server IDs to apply configuration to. The ' + 'name is arbitrary and is used as the Heat resource name ' + 'for the corresponding deployment.'), update_allowed=True ), CONFIG: _sd_ps[CONFIG],