-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #230 from daveRendon/staging
- Loading branch information
Showing
1 changed file
with
75 additions
and
0 deletions.
There are no files selected for viewing
75 changes: 75 additions & 0 deletions
75
application-workloads/zscaler-private-access-connector/main.bicepparam
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 |
---|---|---|
@@ -0,0 +1,75 @@ | ||
using 'main.bicep' | ||
|
||
param networkInterfaceName = 'azinsider-zpa-nic1' | ||
|
||
param enableAcceleratedNetworking = true | ||
|
||
param networkSecurityGroupName = 'azinsider-zpa-nsg' | ||
|
||
param networkSecurityGroupRules = [ | ||
{ | ||
name: 'SSH' | ||
properties: { | ||
priority: 300 | ||
protocol: 'TCP' | ||
access: 'Allow' | ||
direction: 'Inbound' | ||
sourceAddressPrefix: '*' | ||
sourcePortRange: '*' | ||
destinationAddressPrefix: '*' | ||
destinationPortRange: '22' | ||
} | ||
} | ||
{ | ||
name: 'HTTPS' | ||
properties: { | ||
priority: 320 | ||
protocol: 'TCP' | ||
access: 'Allow' | ||
direction: 'Inbound' | ||
sourceAddressPrefix: '*' | ||
sourcePortRange: '*' | ||
destinationAddressPrefix: '*' | ||
destinationPortRange: '443' | ||
} | ||
} | ||
] | ||
|
||
param subnetName = 'default' | ||
|
||
param virtualNetworkName = 'azinsider-zpa-vnet' | ||
|
||
param addressPrefixes = [ | ||
'10.0.0.0/16' | ||
] | ||
|
||
param subnets = [ | ||
{ | ||
name: 'default' | ||
properties: { | ||
addressPrefix: '10.0.0.0/24' | ||
} | ||
} | ||
] | ||
|
||
param publicIpAddressName = 'azinsider-zpa-pip' | ||
|
||
param publicIpAddressType = 'Dynamic' | ||
|
||
param publicIpAddressSku = 'Basic' | ||
|
||
param pipDeleteOption = 'Detach' | ||
|
||
param vmName = 'azinsider-zpa-vm' | ||
|
||
param osDiskType = 'Standard_LRS' | ||
|
||
param osDiskDeleteOption = 'Delete' | ||
|
||
param virtualMachineSize = 'Standard_D2as_v4' | ||
|
||
param nicDeleteOption = 'Detach' | ||
|
||
param adminUsername = 'azureuser' | ||
|
||
param adminPassword = 'YOUR-ADMIN-PASSWORD' |