add support for CyberArk Conjur (API v5)

This commit is contained in:
Ryan Petrello
2019-02-28 13:10:44 -05:00
committed by Jake McDermott
parent c436dcf875
commit 2824616ba6
6 changed files with 125 additions and 17 deletions

View File

@@ -3,6 +3,7 @@ tower-manage = awx:manage
awx-manage = awx:manage
[awx.credential_plugins]
conjur = awx.main.credential_plugins.conjur:conjur_plugin
hashivault_kv = awx.main.credential_plugins.hashivault:hashivault_kv_plugin
hashivault_ssh = awx.main.credential_plugins.hashivault:hashivault_ssh_plugin
azure_kv = awx.main.credential_plugins.azure_kv:azure_keyvault_plugin

View File

@@ -0,0 +1,28 @@
version: '2'
services:
# Primary Tower Development Container link
awx:
links:
- hashivault
- conjur
hashivault:
image: vault:1.0.1
container_name: tools_hashivault_1
ports:
- '8200:8200'
cap_add:
- IPC_LOCK
environment:
VAULT_DEV_ROOT_TOKEN_ID: 'vaultdev'
conjur:
image: cyberark/conjur
command: server -p 8300
environment:
DATABASE_URL: postgres://postgres@postgres/postgres
CONJUR_DATA_KEY: 'dveUwOI/71x9BPJkIgvQRRBF3SdASc+HP4CUGL7TKvM='
depends_on: [ postgres ]
links:
- postgres
ports:
- "8300:8300"

View File

@@ -1,15 +0,0 @@
version: '2'
services:
# Primary Tower Development Container link
awx:
links:
- hashivault
hashivault:
image: vault:1.0.1
container_name: tools_hashivault_1
ports:
- '8200:8200'
cap_add:
- IPC_LOCK
environment:
VAULT_DEV_ROOT_TOKEN_ID: 'vaultdev'