File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1+ # OS and IDE files:
2+ .DS_Store
3+ .idea
4+ .ipynb_checkpoints /
5+ .vscode /
6+
7+ # Python build artifacts:
8+ __pycache__ /
Original file line number Diff line number Diff line change 11#! /bin/bash
22# Registers a Lifecycle Configuration Script using the AWS CLI
3+ # NOTE: This registration by itself will not attach or enable it for any domains/users yet
34
45set -eux
56
67export LCC_SCRIPT_NAME=' set-proxy'
78export SCRIPT_FILE_NAME=' scripts/set-proxy-settings/on-jupyter-server-start.sh'
8- export SCRIPT_TYPE=" JupyterServer"
9- # export SCRIPT_TYPE=" KernelGateway"
9+ export SCRIPT_TYPE=' JupyterServer'
10+ # export SCRIPT_TYPE=' KernelGateway'
1011
1112LCC_CONTENT=` openssl base64 -A -in ${SCRIPT_FILE_NAME} `
1213
13- aws sagemaker --region us-east-2 create-studio-lifecycle-config \
14+ aws sagemaker create-studio-lifecycle-config \
1415 --studio-lifecycle-config-name $LCC_SCRIPT_NAME \
1516 --studio-lifecycle-config-content $LCC_CONTENT \
1617 --studio-lifecycle-config-app-type $SCRIPT_TYPE
You can’t perform that action at this time.
0 commit comments