heat/releasenotes/notes/fix-autoscalinggroup-reference-id-caf8b80c9288ad0f.yaml
ricolin 35cc048fcb Use resource_id instead of phy res name OS::Heat::AutoScalingGroup
We now will uses resource_id instead of physical resource name when we use
get_resource in template.

If you run `get_resource: {physical autoscalinggroup_1}`, will now
return resource id for `autoscalinggroup_1`.

Change-Id: I71ec0f28d3c8251e776d014a38e6a1984daf52ae
Story: #2007007
Task: #37787
2020-02-21 00:03:44 +08:00

10 lines
408 B
YAML

---
fixes:
- |
The behavior of ``get_resource`` on an ``OS::Heat::AutoScalingGroup``
resource has changed. Previously it returned the physical resource name
(i.e. the name of the nested Heat stack which implemented the group). It
will now return the UUID of the nested stack if available. This will also
apply to any resource type that inherits from
``OS::Heat::AutoScalingGroup``.