mirror of
https://github.com/ansible/awx.git
synced 2026-08-06 13:00:05 -02:30
add credential plugin system and minimal working hashivault
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
# Copyright (c) 2019 Ansible by Red Hat
|
||||
# All Rights Reserved.
|
||||
|
||||
from django.core.management.base import BaseCommand
|
||||
|
||||
from awx.main.models import CredentialType
|
||||
|
||||
|
||||
class Command(BaseCommand):
|
||||
|
||||
help = 'Load default managed credential types.'
|
||||
|
||||
def handle(self, *args, **options):
|
||||
CredentialType.setup_tower_managed_defaults()
|
||||
Reference in New Issue
Block a user