Skip to content

Commit

Permalink
Minor Tweaks (#521)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
jtracey93 and github-actions[bot] authored May 3, 2023
1 parent 810d7ed commit cc58ddd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
11 changes: 9 additions & 2 deletions infra-as-code/bicep/modules/hubNetworking/hubNetworking.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,16 @@ param parTags object = {}
param parTelemetryOptOut bool = false

@sys.description('Define outbound destination ports or ranges for SSH or RDP that you want to access from Azure Bastion.')
param parBastionOutboundSshRdpPorts array = ['22','3389']
param parBastionOutboundSshRdpPorts array = [ '22', '3389' ]

var varSubnetProperties = [for subnet in parSubnets: {
var varSubnetMap = map(range(0, length(parSubnets)), i => {
name: parSubnets[i].name
ipAddressRange: parSubnets[i].ipAddressRange
networkSecurityGroupId: contains(parSubnets[i], 'networkSecurityGroupId') ? parSubnets[i].networkSecurityGroupId : ''
routeTableId: contains(parSubnets[i], 'routeTableId') ? parSubnets[i].routeTableId : ''
})

var varSubnetProperties = [for subnet in varSubnetMap: {
name: subnet.name
properties: {
addressPrefix: subnet.ipAddressRange
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Solutions that will be added to the Log Analytics Workspace.

- Default value: `AgentHealthAssessment AntiMalware ChangeTracking Security SecurityInsights SQLAdvancedThreatProtection SQLVulnerabilityAssessment SQLAssessment Updates VMInsights`

- Allowed values: `AgentHealthAssessment`, `AntiMalware`, `ChangeTracking`, `Security`, `SecurityInsights`, `SQLAdvancedThreatProtection`, `SQLVulnerabilityAssessment`, `SQLAssessment`, `Updates`, `VMInsights`
- Allowed values: `AgentHealthAssessment`, `AntiMalware`, `ChangeTracking`, `Security`, `SecurityInsights`, `ServiceMap`, `SQLAdvancedThreatProtection`, `SQLVulnerabilityAssessment`, `SQLAssessment`, `Updates`, `VMInsights`

### parAutomationAccountName

Expand Down
1 change: 1 addition & 0 deletions infra-as-code/bicep/modules/logging/logging.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ param parLogAnalyticsWorkspaceLogRetentionInDays int = 365
'ChangeTracking'
'Security'
'SecurityInsights'
'ServiceMap'
'SQLAdvancedThreatProtection'
'SQLVulnerabilityAssessment'
'SQLAssessment'
Expand Down

0 comments on commit cc58ddd

Please sign in to comment.