Skip to content

Commit bad6375

Browse files
authored
fix: add missing !unsafe
Newer versions of Ansible attempt to evaluate the variables inside of `github_registry` dict fail on `passwords` due to `${{ }}` this means the variable `share` is never set.
1 parent 4e9e30f commit bad6375

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/inventory/host_vars/reference.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ github_runs_on:
1616
github_registry:
1717
url: pulp.infra.os.example.cloud
1818
username: admin
19-
password: ${{ secrets.REGISTRY_PASSWORD }}
19+
password: !unsafe ${{ secrets.REGISTRY_PASSWORD }}
2020
share: true
2121

2222
github_kayobe_arguments:

0 commit comments

Comments
 (0)