mirror of
https://github.com/ansible/awx.git
synced 2026-03-02 17:28:51 -03:30
rename the CyberArk AIM credential type
see: https://github.com/ansible/awx/issues/4400
This commit is contained in:
@@ -101,7 +101,7 @@ def aim_backend(**kwargs):
|
|||||||
|
|
||||||
|
|
||||||
aim_plugin = CredentialPlugin(
|
aim_plugin = CredentialPlugin(
|
||||||
'CyberArk AIM Secret Lookup',
|
'CyberArk AIM Central Credential Provider Lookup',
|
||||||
inputs=aim_inputs,
|
inputs=aim_inputs,
|
||||||
backend=aim_backend
|
backend=aim_backend
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user