17 lines
483 B
YAML
17 lines
483 B
YAML
---
|
|
- name: add azure credential
|
|
awx.awx.tower_credential:
|
|
name: azure_credential
|
|
description: Azure Service Principle
|
|
organization: "Default"
|
|
state: present
|
|
kind: azure_rm
|
|
subscription: "{{ my_subscription }}"
|
|
tenant: "{{ my_tenant }}"
|
|
client: "{{ my_client }}"
|
|
secret: "{{ my_secret }}"
|
|
tower_username: "{{ my_tower_username }}"
|
|
tower_password: "{{ my_tower_password }}"
|
|
tower_host: "{{ my_tower_host }}"
|
|
validate_certs: false
|