Initial qwen3 run with opencode
This commit is contained in:
16
variables.md
Normal file
16
variables.md
Normal file
@@ -0,0 +1,16 @@
|
||||
## Variables
|
||||
|
||||
Define and use variables for flexibility:
|
||||
|
||||
```yaml
|
||||
- name: Deploy application
|
||||
hosts: all
|
||||
vars:
|
||||
app_version: "2.1.0"
|
||||
app_port: 8080
|
||||
tasks:
|
||||
- name: Deploy app
|
||||
get_url:
|
||||
url: "https://example.com/app-{{ app_version }}.tar.gz"
|
||||
dest: "/opt/app"
|
||||
```
|
||||
Reference in New Issue
Block a user