We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bda4ccd + 471efd0 commit 264bd2eCopy full SHA for 264bd2e
hello-world-example/includes/hello-world-ansible.yaml
@@ -2,12 +2,19 @@ tosca_definitions_version: cloudify_dsl_1_4
2
3
description: Installs HTTPD with Ansible.
4
5
+inputs:
6
+
7
+ playbook_path:
8
+ type: string
9
+ display_label: Playbook Path
10
+ default: apache2/playbook.yaml
11
12
node_templates:
13
14
hello-world:
15
type: cloudify.nodes.ansible.Playbook
16
properties:
- playbook_path: apache2/playbook.yaml
17
+ playbook_path: { get_input: playbook_path }
18
start_at_task: "install apache2"
19
ansible_env_vars:
20
ANSIBLE_INVALID_TASK_ATTRIBUTE_FAILED: "False"
0 commit comments