summaryrefslogtreecommitdiff
path: root/tests/fixtures/config/remote-action-modules/git/org_project/playbooks/uri-good.yaml
blob: 0416cef4ebb53e42e55e63e4bba79e269280067c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- hosts: localhost
  tasks:
    - name: Safe uri request from localhost
      uri:
        # We don't seem to have working ssl cert chains in
        # the test bwrap context. Use http to workaround that
        # and don't follow the redirect to https.
        url: http://zuul.opendev.org
        follow_redirects: none
        return_content: yes
        status_code:
          - 301
          - 302
          - 303
          - 307
          - 308