You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.
The repository hasn't changed in a year, and when I run the first script according to the doc it fails: '/tf/caf/landingzones/templates/platform/deploy_platform.sh'
Do I need to create a template from the release and not from main or what is the problem?
The text was updated successfully, but these errors were encountered:
For those getting the same error as me -- I made it further by checking out 2203.1 release from the landingzones repo rather than the most recent release. Docs specify to use most recent, but it seems like it's not compatible
I reverted to 2203.1 and got:
ERROR! 'with_filetree' is not a valid attribute for a Task
The error appears to be in '/tf/caf/landingzones/templates/ansible/load_deployments_alz.yaml': line 35, column 3, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
name: "Creates directory structure - {{template_lib_folder}}"
^ here
We could be wrong, but this one looks like it might be an issue with
missing quotes. Always quote template expression brackets when they
start a value. For instance:
with_items:
- {{ foo }}
Should be written as:
with_items:
- "{{ foo }}"
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The repository hasn't changed in a year, and when I run the first script according to the doc it fails:
'/tf/caf/landingzones/templates/platform/deploy_platform.sh'
Do I need to create a template from the release and not from main or what is the problem?
The text was updated successfully, but these errors were encountered: