--
You received this message because you are subscribed to the Google Groups "AWX Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email to awx-project...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/awx-project/9765d105-faf3-47de-8e73-f9399cbff5c4n%40googlegroups.com.
For what it's worth, this is how I configure mine. I use the ansible awx.awx collection to configure awx itself - that way we get the same config for any dev/test instances.
- name: mycompany ACR (for EEs)
awx.awx.tower_credential:
name: mycompany-acr
credential_type: "Container Registry"
state: present
organization: "mycompany"
description: "ACR for pulling EE images"
inputs:
host: "mycompany.azurecr.io"
password: "{{ awx_acr_password }}"
username: "mycompany"
verify_ssl: true
- name: Create Execution Environment
awx.awx.execution_environment:
name: "mycompany awx-ee"
image: "mycompany.azurecr.io/awx-mycompany-ee-prod:7997"
credential: "mycompany-acr"
organization: "mycompany"
pull: always
description: "Standard awx-ee + az cli, winrm, opentelemetry
and netaddr"