-
Notifications
You must be signed in to change notification settings - Fork 2
/
avail.bicep
56 lines (46 loc) · 1.85 KB
/
avail.bicep
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Builds the pair of Linux VMs with the selected OS
////////////////////////////////////////////////////////////////////////////////
// Required parameters
////////////////////////////////////////////////////////////////////////////////
param location string
////////////////////////////////////////////////////////////////////////////////
// Parameters with acceptable defaults
////////////////////////////////////////////////////////////////////////////////
@description('A value to indicate the deployment number.')
@minValue(0)
@maxValue(99)
param sequence int = 1
@description('Format string of the resource names.')
param resourceNameFormat string = '{0}-syslogfwd-{1}'
////////////////////////////////////////////////////////////////////////////////
// VARIABLES
////////////////////////////////////////////////////////////////////////////////
var sequenceFormatted = format('{0:00}', sequence)
////////////////////////////////////////////////////////////////////////////////
// RESOURCES
////////////////////////////////////////////////////////////////////////////////
resource ppg 'Microsoft.Compute/proximityPlacementGroups@2021-04-01' = {
name: format(resourceNameFormat, 'ppg', sequenceFormatted)
location: location
properties: {
proximityPlacementGroupType: 'Standard'
}
}
resource avset 'Microsoft.Compute/availabilitySets@2021-04-01' = {
name: format(resourceNameFormat, 'avail', sequenceFormatted)
location: location
sku: {
name: 'Aligned'
}
properties: {
platformFaultDomainCount: 3
platformUpdateDomainCount: 2
proximityPlacementGroup: {
id: ppg.id
}
}
}
////////////////////////////////////////////////////////////////////////////////
// OUTPUTS
////////////////////////////////////////////////////////////////////////////////
output avsetId string = avset.id