This repository has been archived by the owner on Mar 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploy NSG and VM public IPs when internal standard LB selected (#325)
This commit deploys a Network Security Group when a Standard SKU internal Load Balancer is selected and the loadBalancerType is internal. Each VM in the backend pool is also assigned a Standard SKU public IP address to allow outbound traffic. Different Basic and Standard SKU load balancer or public IP resources in an Availability Set is not allowed, so public IPs must be Standard SKU for VMs when deploying standard internal loadbalancer. Add integration tests for Standard Internal load balancer when used with loadBalancerType `internal` and `gateway` Fixes #308
- Loading branch information
Showing
6 changed files
with
167 additions
and
50 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
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,27 @@ | ||
{ | ||
"description": "1 data node cluster with Standard loadbalancer and Application Gateway", | ||
"isValid" : true, | ||
"deploy" : true, | ||
"why" : "", | ||
"location" : "westeurope", | ||
"parameters" : { | ||
"loadBalancerType":{"value":"gateway"}, | ||
"loadBalancerInternalSku":{"value":"Standard"}, | ||
"kibana":{"value":"Yes"}, | ||
"vmSizeKibana":{"value":"Standard_DS1_v2"}, | ||
"vmSizeDataNodes":{"value":"Standard_DS1_v2"}, | ||
"vmDataNodeCount":{"value":1}, | ||
"vmDataDiskCount":{"value":0}, | ||
"vmDataDiskSize":{"value":"32GiB"}, | ||
"vmSizeClientNodes":{"value":"Standard_DS1_v2"}, | ||
"dataNodesAreMasterEligible":{"value":"Yes"}, | ||
"authenticationType":{"value":"password"}, | ||
"appGatewayTier": {"value":"Standard"}, | ||
"appGatewaySku": {"value":"Small"}, | ||
"appGatewayCount": {"value":1}, | ||
"appGatewayCertBlob": {"value":"certs/cert-with-password.pfx"}, | ||
"appGatewayCertPassword": {"value":"Password123"}, | ||
"appGatewayWafStatus": {"value":"Disabled"}, | ||
"appGatewayWafMode": {"value":"Detection"} | ||
} | ||
} |
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,20 @@ | ||
{ | ||
"description": "1 data node cluster with Standard internal loadbalancer", | ||
"isValid" : true, | ||
"deploy" : true, | ||
"why" : "", | ||
"location" : "westeurope", | ||
"parameters" : { | ||
"loadBalancerType":{"value":"internal"}, | ||
"loadBalancerInternalSku":{"value":"Standard"}, | ||
"kibana":{"value":"Yes"}, | ||
"vmSizeKibana":{"value":"Standard_DS1_v2"}, | ||
"vmSizeDataNodes":{"value":"Standard_DS1_v2"}, | ||
"vmDataNodeCount":{"value":1}, | ||
"vmDataDiskCount":{"value":0}, | ||
"vmDataDiskSize":{"value":"32GiB"}, | ||
"vmSizeClientNodes":{"value":"Standard_DS1_v2"}, | ||
"dataNodesAreMasterEligible":{"value":"Yes"}, | ||
"authenticationType":{"value":"password"} | ||
} | ||
} |
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