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
Note: collection testns.testname created at /home/ansible-dev/collections/ansible_collections
67
-
```
68
-
69
-
Running the above command generates an Ansible Collection with the following structure:
34
+
## Usage
70
35
71
-
```
72
-
$ tree -lla /home/ansible-dev/collections/ansible_collections
73
-
.
74
-
├── CHANGELOG.rst
75
-
├── changelogs
76
-
│ └── config.yaml
77
-
├── CODE_OF_CONDUCT.md
78
-
├── CONTRIBUTING
79
-
├── docs
80
-
│ ├── docsite
81
-
│ │ └── links.yml
82
-
│ └── .keep
83
-
├── extensions
84
-
│ ├── eda
85
-
│ │ └── rulebooks
86
-
│ │ └── rulebook.yml
87
-
│ └── molecule
88
-
│ ├── integration_hello_world
89
-
│ │ └── molecule.yml
90
-
│ └── utils
91
-
│ ├── playbooks
92
-
│ │ ├── converge.yml
93
-
│ │ └── noop.yml
94
-
│ └── vars
95
-
│ └── vars.yml
96
-
├── galaxy.yml
97
-
├── .github
98
-
│ └── workflows
99
-
│ └── test.yml
100
-
├── .isort.cfg
101
-
├── LICENSE
102
-
├── MAINTAINERS
103
-
├── meta
104
-
│ └── runtime.yml
105
-
├── plugins
106
-
│ ├── action
107
-
│ │ └── __init__.py
108
-
│ ├── cache
109
-
│ │ └── __init__.py
110
-
│ ├── filter
111
-
│ │ ├── hello_world.py
112
-
│ │ └── __init__.py
113
-
│ ├── inventory
114
-
│ │ └── __init__.py
115
-
│ ├── modules
116
-
│ │ └── __init__.py
117
-
│ ├── module_utils
118
-
│ │ └── __init__.py
119
-
│ ├── plugin_utils
120
-
│ │ └── __init__.py
121
-
│ ├── sub_plugins
122
-
│ │ └── __init__.py
123
-
│ └── test
124
-
│ └── __init__.py
125
-
├── .pre-commit-config.yaml
126
-
├── .prettierignore
127
-
├── pyproject.toml
128
-
├── README.md
129
-
├── tests
130
-
│ ├── .gitignore
131
-
│ ├── integration
132
-
│ │ ├── __init__.py
133
-
│ │ ├── targets
134
-
│ │ │ └── hello_world
135
-
│ │ │ └── tasks
136
-
│ │ │ └── main.yml
137
-
│ │ └── test_integration.py
138
-
│ └── unit
139
-
│ └── .keep
140
-
└── .vscode
141
-
└── extensions.json
142
-
```
36
+
Full documentation on how to use this, along with it's integration with VS Code Ansible Extension can be found in https://ansible.readthedocs.io/projects/creator/.
143
37
144
-
###Upcoming features
38
+
## Upcoming features
145
39
146
40
- Scaffold Ansible plugins of your choice with the `create` action.
147
41
Switch to the [create](https://github.com/ansible-community/ansible-creator/tree/create) branch and try it out!
0 commit comments