Created
December 10, 2017 14:20
-
-
Save anoff/6ff255640e381933425df4a184553e99 to your computer and use it in GitHub Desktop.
arm-ds-security.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"securityRules": [ | |
{ | |
"name": "JupyterHub", | |
"properties": { | |
"priority": 1010, | |
"protocol": "TCP", | |
"access": "Allow", | |
"direction": "Inbound", | |
"sourceAddressPrefix": "*", | |
"sourcePortRange": "*", | |
"destinationAddressPrefix": "*", | |
"destinationPortRange": "8000" | |
} | |
}, | |
{ | |
"name": "RStudioServer", | |
"properties": { | |
"priority": 1020, | |
"protocol": "TCP", | |
"access": "Allow", | |
"direction": "Inbound", | |
"sourceAddressPrefix": "*", | |
"sourcePortRange": "*", | |
"destinationAddressPrefix": "*", | |
"destinationPortRange": "8787" | |
} | |
}, | |
{ | |
"name": "default-allow-ssh", | |
"properties": { | |
"priority": 1030, | |
"protocol": "TCP", | |
"access": "Allow", | |
"direction": "Inbound", | |
"sourceAddressPrefix": "*", | |
"sourcePortRange": "*", | |
"destinationAddressPrefix": "*", | |
"destinationPortRange": "22" | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment