You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
384 B
9 lines
384 B
3 years ago
|
import os
|
||
|
from itsdangerous import TimedJSONWebSignatureSerializer
|
||
|
|
||
|
consul_token = os.environ.get('consul_token','a94d1ecb-81d3-ea0a-4dc8-5e6701e528c5')
|
||
|
consul_url = os.environ.get('consul_url','http://10.5.148.67:8500/v1')
|
||
|
admin_passwd = os.environ.get('admin_passwd','cass.007')
|
||
|
secret_key = os.environ.get('secret_key',consul_token)
|
||
|
s = TimedJSONWebSignatureSerializer(secret_key)
|