无法解析 Ansible 中的 dict 和 array 元素
我有一个 yaml 文件,我想使用 Ansible 浏览下面 yaml 文件中的每个元素。
有人可以帮我吗?
---
hardwares:
- VM.Standard2.1:
- Oracle Linux:
- '7.9'
- '8'
CentOS:
- '8'
Canonical Ubuntu:
- '20.04'
- VM.Standard.E4.Flex:
- Oracle Linux:
- '7.9'
- '8'
CentOS:
- '8'
Canonical Ubuntu:
- '20.04'
- VM.Standard.E3.Flex:
- Oracle Linux:
- '7.9'
- '8'
CentOS:
- '8'
Canonical Ubuntu:
- '20.04'
- VM.Standard.A1.Flex:
- Oracle Linux:
- '7.9'
- '8'
Canonical Ubuntu:
- '20.04'
I have a yaml file and I would like to go through each of the element in the below yaml file using Ansible.
Can someone help me here?
---
hardwares:
- VM.Standard2.1:
- Oracle Linux:
- '7.9'
- '8'
CentOS:
- '8'
Canonical Ubuntu:
- '20.04'
- VM.Standard.E4.Flex:
- Oracle Linux:
- '7.9'
- '8'
CentOS:
- '8'
Canonical Ubuntu:
- '20.04'
- VM.Standard.E3.Flex:
- Oracle Linux:
- '7.9'
- '8'
CentOS:
- '8'
Canonical Ubuntu:
- '20.04'
- VM.Standard.A1.Flex:
- Oracle Linux:
- '7.9'
- '8'
Canonical Ubuntu:
- '20.04'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
结构设计错误。使用字典
或列表
让我们在下面的示例中使用字典
创建一个文件
并将其包含在循环中
给出(删节)
The design of the structure is wrong. Either use a dictionary
or a list
Let's use dictionaries in the example below
Create a file
and include it in the loop
gives (abridged)