Don't allow rotation of HeatAuthEncryptionKey

Heat does not support rotation of auth_encryption_key
for existing deployments with heat stacks. Once this
key has been rotated exisiting stacks can't be updated
or even deleted. Let's not allow them to be changed.

Change-Id: I19c1d166ca72465fd4ae3dad46de77bb095f73d4
(cherry picked from commit 5db2ab2040)
This commit is contained in:
ramishra 2021-03-19 07:38:33 +05:30 committed by Rabi Mishra
parent 0e247bc4a3
commit c45c836b80
1 changed files with 1 additions and 0 deletions

View File

@ -160,6 +160,7 @@ DO_NOT_ROTATE_LIST = (
'CephClusterFSID',
'CephManilaClientKey',
'CephRgwKey',
'HeatAuthEncryptionKey',
)
PLAN_NAME_PATTERN = '^[a-zA-Z0-9-]+$'