This repository has been archived by the owner on Oct 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbcdmi.auth
36 lines (31 loc) · 2.26 KB
/
bcdmi.auth
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#Authorization type. Supported authroization formats are:
# basic HTTP basic authentication (username/password)
# token HTTP token authentication
# keystone-basic Keystone auth token (with basic username/password authentication)
# keystone-voms Keystone auth token (with VOMS-enabled certificates)
# keystone-myproxy Keystone auth token (with MyProxy-enabled credentials)
AUTH_TYPE='keystone-voms'
#basic authentication
#AUTH_USERNAME="mysusername"
#AUTH_PASSWORD="mypassword"
#token authentication (the following token is passed to the X-Auth-Token header)
#AUTH_TOKEN="89qynase9ryxcidxkhdaxklmworx"
#keystone-basic auth (username/password authentication with keystone)
#AUTH_KEYSTONE_URI="http://mykeystoneurl.com/" #optional. If not specified it is automatically retreived from the server endpoint
#AUTH_USERNAME="mysusername"
#AUTH_PASSWORD="mypassword"
#AUTH_KEYSTONE_TENANT='mytenant' #optional. If not specified and the user is registered to only one tentant, this tenant will be used
#keystone-voms auth
#AUTH_KEYSTONE_URI="http://mykeystoneurl.com/" #optional. If not specified it is automatically retreived from the server endpoint
#AUTH_KEYSTONE_CERT="$HOME/.globus/usercert.pem" #optional. If not specified, AUTH_KEYSTONE_PROXY is used insthead
#AUTH_KEYSTONE_KEY="$HOME/.globus/userkey.pem"
AUTH_KEYSTONE_PROXY="/tmp/x509up_u`id -u`" #valid proxy shall be generated. If not signed with VOMS, AUTH_KEYSTONE_VOMSEXT is required
#AUTH_KEYSTONE_VOMSEXT="fedcloud.egi.eu" #mandatory for AUTH_KEYSTONE_CERT. If not specified, AUTH_KEYSTONE_PROXY shall be already signed with VOMS
#AUTH_KEYSTONE_TENANT='mytenant' #optional. If not specified, the tenant assigned to AUTH_KEYSTONE_VOMSEXT will be used
#keystone-myproxy auth
#AUTH_KEYSTONE_URI="http://mykeystoneurl.com/" #optional. If not specified it is automatically retreived from the server endpoint
#AUTH_KEYSTONE_VOMSEXT="fedcloud.egi.eu" #mandatory
#AUTH_KEYSTONE_TENANT='mytenant' #optional. If not specified, the tenant assigned to AUTH_KEYSTONE_VOMSEXT will be used
#AUTH_MYPROXY_SERVER='myproxy.server.address.com:7512' #Myproxy server address: <server host>[:<server port>]. Port is optional.
#AUTH_USERNAME="myusername"
#AUTH_PASSWORD="mypassword" #optional. If not specified, password is requested to the user