updated docs and task sequence
diff --git a/README.md b/README.md
index 910cf93..418cedd 100644
--- a/README.md
+++ b/README.md
@@ -1,22 +1,25 @@
-Role Name
+Apigee OPDK Setup Target Links
 =========
 
-A brief description of the role goes here.
+This role sets up a scaffolded `apigee_home` to redirect components and data to custom locations. 
+This role will setup the target links if the `target_links` collection is provided.
 
 Requirements
 ------------
 
-Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required.
+This role requires elevated system privilege.
 
 Role Variables
 --------------
+The collection `target_links` is used for creating softlinks from apigee system folders to customer target locations.
 
-A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well.
+    target_links:
+    - { src: '/apps/opt/apigee', dest: '/opt/apigee' }
 
 Dependencies
 ------------
 
-A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles.
+None
 
 Example Playbook
 ----------------
@@ -25,7 +28,7 @@
 
     - hosts: servers
       roles:
-         - { role: username.rolename, x: 42 }
+         - { role: apigee-opdk-setup-target-links }
 
 License
 -------
diff --git a/defaults/main.yml b/defaults/main.yml
index 792958c..e5cd9c2 100644
--- a/defaults/main.yml
+++ b/defaults/main.yml
@@ -1,2 +1,7 @@
 ---
-# defaults file for /Users/carlosfrias/apigee-workspace/apigee-opdk-role-workspace/apigee-opdk-setup-target-links
\ No newline at end of file
+# defaults file for /Users/carlosfrias/apigee-workspace/apigee-opdk-role-workspace/apigee-opdk-setup-target-links
+
+# Used for creating softlinks from apigee system folders to customer hard targets
+# target_links:
+#- { src: '/apps/opt/apigee', dest: '/opt/apigee' }
+