Importing Groups as Roles

From DreamFactory
Jump to: navigation, search
DreamFactoryTutorialsImporting Groups as Roles
m (Changed notes from code blocks to italic text, updated ordering of examples and usage to read better.)
(Example - Without Username and Password (Requires username and password in service definition))
 
(6 intermediate revisions by 2 users not shown)
Line 3: Line 3:
 
DreamFactory Active Directory service lets you import your Active Directory Groups as Roles.  
 
DreamFactory Active Directory service lets you import your Active Directory Groups as Roles.  
  
''Note: If you are looking for information on Active Directory authentication then please see [[DreamFactory/Tutorials/Using_Active_Directory|Using Active Directory]].''
+
''Note: If you are looking for information on Active Directory authentication, see [[DreamFactory/Tutorials/Using_Active_Directory|Using Active Directory]].''
  
 
This tutorial focuses on Active Directory Group import using an existing DreamFactory Active Directory service. To learn  
 
This tutorial focuses on Active Directory Group import using an existing DreamFactory Active Directory service. To learn  
how to setup an Active Directory service see [Using Active Directory](Using_Active_Directory).
+
how to set up an Active Directory service see [[DreamFactory/Tutorials/Using_Active_Directory|Using Active Directory]].
  
 
=== Import Command ===
 
=== Import Command ===
Line 13: Line 13:
  
 
<pre>
 
<pre>
php artisan dreamfactory:ad-group-import <service_name> --username[=USERNAME] --password[=PASSWORD]
+
php artisan df:ad-group-import <service_name> --username[=USERNAME] --password[=PASSWORD]
 
</pre>
 
</pre>
  
''Username and Password are optional. They are not required when you provision your Active Directory service with a username and password''
+
''Username and Password are optional. They are not required when you provision your Active Directory service with a username and password''.
  
 
=== Example - With Username and Password ===
 
=== Example - With Username and Password ===
 
   
 
   
 
<pre>
 
<pre>
php artisan dreamfactory:ad-group-import demo --username=jdoe --password=secret
+
php artisan df:ad-group-import demo --username=jdoe --password=secret
 
</pre>
 
</pre>
  
Line 31: Line 31:
  
 
<pre>
 
<pre>
php artisan dreamfactory:ad-group-import demo
+
php artisan df:ad-group-import demo
 
</pre>
 
</pre>
  
 
* Service name: demo
 
* Service name: demo
* Username: jdoe
 
* Password: secret
 

Latest revision as of 14:40, 10 January 2018

Tutorial

DreamFactory Active Directory service lets you import your Active Directory Groups as Roles.

Note: If you are looking for information on Active Directory authentication, see Using Active Directory.

This tutorial focuses on Active Directory Group import using an existing DreamFactory Active Directory service. To learn how to set up an Active Directory service see Using Active Directory.

Import Command

You can import your Active Directory Groups using the DreamFactory command line utility.

php artisan df:ad-group-import <service_name> --username[=USERNAME] --password[=PASSWORD]

Username and Password are optional. They are not required when you provision your Active Directory service with a username and password.

Example - With Username and Password

php artisan df:ad-group-import demo --username=jdoe --password=secret
  • Service name: demo
  • Username: jdoe
  • Password: secret

Example - Without Username and Password (Requires username and password in service definition)

php artisan df:ad-group-import demo
  • Service name: demo