updated construction of apigee repo url and repo protocol
diff --git a/defaults/main.yml b/defaults/main.yml
index 02fa9b7..a55f877 100644
--- a/defaults/main.yml
+++ b/defaults/main.yml
@@ -1,3 +1,3 @@
 ---
 # defaults file for apigee-opdk-setup-bootstrap
-apigee_repo_url: 'https://{{ apigee_repo_uri }}'
+
diff --git a/tasks/main.yml b/tasks/main.yml
index 5375f2f..c09e3a8 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -40,7 +40,7 @@
   when: apigee_repo_host is not defined
 
 - name: Install bootstrap
-  shell: 'bash {{ bootstrap_script }} apigeeuser={{ apigee_repo_user }} apigeepassword={{ apigee_repo_password }} apigeerepohost={{ apigee_repo_host }} JAVA_FIX=C'
+  shell: 'bash {{ bootstrap_script }} apigeeuser={{ apigee_repo_user }} apigeepassword={{ apigee_repo_password }} apigeerepohost={{ apigee_repo_uri }} apigeeprotocol={{ apigee_repo_protocol }} JAVA_FIX=C'
   args:
     creates: '{{ apigee_installation_home }}/apigee-service/bin/apigee-service'
   register: results
@@ -50,7 +50,7 @@
   when: apigee_repo_host is defined and apigee_stage is not defined
 
 - name: Install bootstrap
-  shell: 'bash {{ bootstrap_script }} apigeeuser={{ apigee_repo_user }} apigeepassword={{ apigee_repo_password }} apigeestage={{ apigee_stage }} apigeerepohost={{ apigee_repo_host }} JAVA_FIX=C'
+  shell: 'bash {{ bootstrap_script }} apigeeuser={{ apigee_repo_user }} apigeepassword={{ apigee_repo_password }} apigeestage={{ apigee_stage }} apigeerepohost={{ apigee_repo_host }} apigeeprotocol={{ apigee_repo_protocol }} JAVA_FIX=C'
   args:
     creates: '{{ apigee_installation_home }}/apigee-service/bin/apigee-service'
   register: results