Ensure MSI readonly fields are set to '' in ExternalNoReadOnly converters (#3962)

This commit is contained in:
Tanmay Satam 2024-11-19 09:02:07 -05:00 коммит произвёл GitHub
Родитель f8133771c5
Коммит 65499d78a3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -441,6 +441,8 @@ func (c openShiftClusterConverter) ExternalNoReadOnly(_oc interface{}) {
}
}
if oc.Identity != nil {
oc.Identity.PrincipalID = ""
oc.Identity.TenantID = ""
for i := range oc.Identity.UserAssignedIdentities {
if entry, ok := oc.Identity.UserAssignedIdentities[i]; ok {
entry.ClientID = ""

Просмотреть файл

@ -385,6 +385,8 @@ func (c openShiftClusterConverter) ExternalNoReadOnly(_oc interface{}) {
}
}
if oc.Identity != nil {
oc.Identity.PrincipalID = ""
oc.Identity.TenantID = ""
for i := range oc.Identity.UserAssignedIdentities {
if entry, ok := oc.Identity.UserAssignedIdentities[i]; ok {
entry.ClientID = ""