diff --git a/doc/source/ext/resources.py b/doc/source/ext/resources.py index c9705b011b..3b59bb187b 100644 --- a/doc/source/ext/resources.py +++ b/doc/source/ext/resources.py @@ -28,7 +28,6 @@ from heat.engine import support from heat.openstack.common.gettextutils import _ - global_env = environment.Environment({}, user_env=False) @@ -221,6 +220,11 @@ Resources: para = nodes.paragraph('', _('Can be updated without replacement.')) definition.append(para) + elif prop.immutable: + para = nodes.paragraph('', _('Updates are not supported. ' + 'Resource update will fail on any ' + 'attempt to update this property.')) + definition.append(para) else: para = nodes.paragraph('', _('Updates cause replacement.')) definition.append(para)