Login
Default
Home
Containers
Host Nodes
Tasks
Definitions
Toggle theme
Light
Dark
Auto
Edit Task Definition
Goal
Describe the goal you want to achieve, such as 'Install Nginx and start the service.'
Task Data (YAML)
- name: Ensure UFW is installed ansible.builtin.package: name: ufw state: present - name: Allow specified port through the firewall ansible.builtin.ufw: rule: allow port: "{{ user_input_port }}" - name: Enable UFW ansible.builtin.ufw: state: enabled - name: Reload UFW to apply new rule ansible.builtin.command: ufw reload when: ansible_facts['os_family'] == 'Debian'
AI generated (should be YAML format)
Save
Regenerate Task Data
Back to List
Delete Task Definition
Loading...