-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated Solution with a vnet injection sample. * Added blob public storage feature enablement. * Updated deploy template.
- Loading branch information
1 parent
1fd3001
commit d189b77
Showing
9 changed files
with
480 additions
and
67 deletions.
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,36 @@ | ||
{ | ||
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"applicationClientId": { | ||
"value": "${AZURE_CLIENT_ID}" | ||
}, | ||
"enablePodSubnet": { | ||
"value": "${ENABLE_POD_SUBNET}" | ||
}, | ||
"enableVpnGateway": { | ||
"value": "${ENABLE_VPN_GATEWAY}" | ||
}, | ||
"enableBastion": { | ||
"value": "${ENABLE_BASTION}" | ||
}, | ||
"vpnSharedKey": { | ||
"value": "${VPN_SHARED_KEY}" | ||
}, | ||
"remoteVpnAddress": { | ||
"value": "${REMOTE_VPN_ADDRESS}" | ||
}, | ||
"remoteNetworkPrefix": { | ||
"value": "${REMOTE_NETWORK_PREFIX}" | ||
}, | ||
"softwareRepository": { | ||
"value": "${SOFTWARE_REPOSITORY}" | ||
}, | ||
"softwareBranch": { | ||
"value": "${SOFTWARE_BRANCH}" | ||
} | ||
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"applicationClientId": { | ||
"value": "${AZURE_CLIENT_ID}" | ||
}, | ||
"enablePodSubnet": { | ||
"value": "${ENABLE_POD_SUBNET}" | ||
}, | ||
"enableVpnGateway": { | ||
"value": "${ENABLE_VPN_GATEWAY}" | ||
}, | ||
"enableBastion": { | ||
"value": "${ENABLE_BASTION}" | ||
}, | ||
"enableBlobPublicAccess": { | ||
"value": "${ENABLE_BLOB_PUBLIC_ACCESS}" | ||
}, | ||
"vpnSharedKey": { | ||
"value": "${VPN_SHARED_KEY}" | ||
}, | ||
"remoteVpnAddress": { | ||
"value": "${REMOTE_VPN_ADDRESS}" | ||
}, | ||
"remoteNetworkPrefix": { | ||
"value": "${REMOTE_NETWORK_PREFIX}" | ||
}, | ||
"softwareRepository": { | ||
"value": "${SOFTWARE_REPOSITORY}" | ||
}, | ||
"softwareBranch": { | ||
"value": "${SOFTWARE_BRANCH}" | ||
} | ||
} | ||
} | ||
} |
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
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
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
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
Oops, something went wrong.