summaryrefslogtreecommitdiff
path: root/test/integration/targets/tower_project/tasks/create_project_dir.yml
blob: 5238da8b4539c9c742ddcc3dca4ebfafd1535c71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
- name: Fetch project_base_dir
  uri:
    url: "https://{{ tower_host}}/api/v2/config/"
    user: "{{ tower_username }}"
    password: "{{ tower_password }}"
    validate_certs: false
    return_content: true
    force_basic_auth: true
  register: awx_config

- tower_inventory:
    name: localhost
    organization: Default

- tower_host:
    name: localhost
    inventory: localhost
    variables:
      ansible_connection: local

- name: create an unused SSH / Machine credential
  tower_credential:
    name: dummy
    kind: ssh
    ssh_key_data: |
      -----BEGIN EC PRIVATE KEY-----
      MHcCAQEEIIUl6R1xgzR6siIUArz4XBPtGZ09aetma2eWf1v3uYymoAoGCCqGSM49
      AwEHoUQDQgAENJNjgeZDAh/+BY860s0yqrLDprXJflY0GvHIr7lX3ieCtrzOMCVU
      QWzw35pc5tvuP34SSi0ZE1E+7cVMDDOF3w==
      -----END EC PRIVATE KEY-----
    organization: Default

- name: Disable bubblewrap
  command: tower-cli setting modify AWX_PROOT_ENABLED false

- block:
    - name: Create a directory for manual project
      vars:
        project_base_dir: "{{ awx_config.json.project_base_dir }}"
      command: tower-cli ad_hoc launch --monitor --inventory localhost
        --credential dummy --module-name command
        --module-args "mkdir {{ project_base_dir }}/manual_test_project"
  always:
    - name: enable bubblewrap
      command: tower-cli setting modify AWX_PROOT_ENABLED true