summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2023-10-13 04:28:40 +0200
committerGitHub <noreply@github.com>2023-10-13 04:28:40 +0200
commit4f04df75ccacbd8eafb6c6b93333d2e799c505f1 (patch)
treed9b44b0b9c2d134dd882dd2ebfc5d3ab629ce268 /test
parentansible-test - Clean up old Python 2 compat code (#81962) (diff)
downloadansible-4f04df75ccacbd8eafb6c6b93333d2e799c505f1.tar.xz
ansible-4f04df75ccacbd8eafb6c6b93333d2e799c505f1.zip
Fix outdated S3 URLs (#81964)
We should always use the CloudFront backed endpoint (ci-files) not the direct S3 bucket reference (ansible-ci-files).
Diffstat (limited to 'test')
-rw-r--r--test/integration/targets/dnf/vars/main.yml2
-rw-r--r--test/integration/targets/unarchive/tasks/test_download.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/targets/dnf/vars/main.yml b/test/integration/targets/dnf/vars/main.yml
index 3f7b43a712..90b6856217 100644
--- a/test/integration/targets/dnf/vars/main.yml
+++ b/test/integration/targets/dnf/vars/main.yml
@@ -3,4 +3,4 @@ dnf_log_files:
- /var/log/dnf.rpm.log
- /var/log/dnf.librepo.log
-skip_broken_repo_baseurl: "https://ansible-ci-files.s3.amazonaws.com/test/integration/targets/dnf/skip-broken/RPMS/"
+skip_broken_repo_baseurl: "https://ci-files.testing.ansible.com/test/integration/targets/dnf/skip-broken/RPMS/"
diff --git a/test/integration/targets/unarchive/tasks/test_download.yml b/test/integration/targets/unarchive/tasks/test_download.yml
index ef5693425d..a133bf51c7 100644
--- a/test/integration/targets/unarchive/tasks/test_download.yml
+++ b/test/integration/targets/unarchive/tasks/test_download.yml
@@ -8,7 +8,7 @@
block:
- name: unarchive a tar from an URL
unarchive:
- src: "https://ansible-ci-files.s3.amazonaws.com/test/integration/targets/apt/echo-hello-source.tar.gz"
+ src: "https://ci-files.testing.ansible.com/test/integration/targets/apt/echo-hello-source.tar.gz"
dest: "{{ remote_tmp_dir }}/test-unarchive-tar-gz"
mode: "0700"
remote_src: yes