added to capture license file and place it where the remainder of the playbooks will find it
diff --git a/setup-apigee-license.yml b/setup-apigee-license.yml new file mode 100644 index 0000000..4878f7b --- /dev/null +++ b/setup-apigee-license.yml
@@ -0,0 +1,21 @@ +--- +- hosts: localhost + connection: local + vars: + apigee_config: ~/.apigee + + vars_prompt: + - name: license_path + prompt: "Enter path to license file" + private: no + + tasks: + - name: Copy license file in .apigee folder + copy: + src: '{{ license_path }}' + dest: '{{ apigee_config}}/license.txt' + register: status + + - name: Copy license file status report + debug: + var: status