rename the CyberArk AIM credential type

see: https://github.com/ansible/awx/issues/4400
This commit is contained in:
Ryan Petrello 2019-10-16 15:58:35 -04:00
parent da998fb196
commit ce5bb9197e
No known key found for this signature in database
GPG Key ID: F2AA5F2122351777
2 changed files with 21 additions and 1 deletions

View File

@ -101,7 +101,7 @@ def aim_backend(**kwargs):
aim_plugin = CredentialPlugin(
'CyberArk AIM Secret Lookup',
'CyberArk AIM Central Credential Provider Lookup',
inputs=aim_inputs,
backend=aim_backend
)

View File

@ -0,0 +1,20 @@
# Generated by Django 2.2.4 on 2019-10-16 19:51
from django.db import migrations
def update_cyberark_aim_name(apps, schema_editor):
apps.get_model('main', 'CredentialType').objects.filter(namespace='aim').update(
name='CyberArk AIM Central Credential Provider Lookup'
)
class Migration(migrations.Migration):
dependencies = [
('main', '0097_v360_workflowapproval_approved_or_denied_by'),
]
operations = [
migrations.RunPython(update_cyberark_aim_name)
]