Skip to content

Commit 94d5d70

Browse files
committed
feat(tasks): AWX Credential Type
!26
1 parent 0433579 commit 94d5d70

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

tasks/awx/credential_type.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
- name: Add Credential Type
3+
awx.awx.credential_type:
4+
controller_host: "{{ nfc_pb_awx_controller_host | default(omit) }}"
5+
controller_oauthtoken: "{{ nfc_pb_awx_controller_oauthtoken | default(omit) }}"
6+
controller_username: "{{ nfc_pb_awx_controller_username | default(omit) }}"
7+
controller_password: "{{ nfc_pb_awx_controller_password | default(omit) }}"
8+
validate_certs: "{{ validate_certs | default(true) }}"
9+
10+
name: "{{ nfc_pb_awx_credential_type.name }}"
11+
new_name: "{{ nfc_pb_awx_credential_type.new_name | default(omit) }}"
12+
description: "{{ nfc_pb_awx_credential_type.description | default('') }}"
13+
kind: "{{ nfc_pb_awx_credential_type.kind | default('cloud') }}"
14+
inputs: "{{ nfc_pb_awx_credential_type.inputs | default(omit) }}"
15+
injectors: "{{ nfc_pb_awx_credential_type.injectors | default(omit) }}"
16+
state: "{{ nfc_pb_awx_credential_type.state | default('present') }}"
17+
# no_log: true
18+
diff: true

0 commit comments

Comments
 (0)