mirror of
https://github.com/ansible/awx.git
synced 2026-02-17 11:10:03 -03:30
add support for CyberArk Conjur (API v5)
This commit is contained in:
committed by
Jake McDermott
parent
c436dcf875
commit
2824616ba6
28
tools/docker-credential-plugins-override.yml
Normal file
28
tools/docker-credential-plugins-override.yml
Normal 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"
|
||||
Reference in New Issue
Block a user