@pulumi/azure 5.87.0-alpha.1723457899 → 5.87.0-alpha.1723473262
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apimanagement/policyFragment.d.ts +3 -3
- package/compute/linuxVirtualMachineScaleSet.d.ts +50 -49
- package/compute/linuxVirtualMachineScaleSet.js +2 -1
- package/compute/linuxVirtualMachineScaleSet.js.map +1 -1
- package/compute/orchestratedVirtualMachineScaleSet.d.ts +26 -26
- package/compute/orchestratedVirtualMachineScaleSet.js +2 -2
- package/compute/windowsVirtualMachineScaleSet.d.ts +41 -39
- package/compute/windowsVirtualMachineScaleSet.js +5 -3
- package/compute/windowsVirtualMachineScaleSet.js.map +1 -1
- package/containerapp/app.d.ts +1 -1
- package/containerapp/app.js +1 -1
- package/loganalytics/savedSearch.d.ts +3 -3
- package/network/subnet.d.ts +21 -9
- package/network/subnet.js.map +1 -1
- package/package.json +2 -2
- package/securitycenter/storageDefender.d.ts +12 -0
- package/securitycenter/storageDefender.js +2 -0
- package/securitycenter/storageDefender.js.map +1 -1
- package/storage/shareFile.d.ts +0 -9
- package/storage/shareFile.js.map +1 -1
- package/types/input.d.ts +122 -76
- package/types/output.d.ts +126 -80
package/types/input.d.ts
CHANGED
|
@@ -17856,17 +17856,27 @@ export declare namespace compute {
|
|
|
17856
17856
|
/**
|
|
17857
17857
|
* The Username for which this Public SSH Key should be configured.
|
|
17858
17858
|
*
|
|
17859
|
-
* > **
|
|
17859
|
+
* > **Note:** The Azure VM Agent only allows creating SSH Keys at the path `/home/{username}/.ssh/authorized_keys` - as such this public key will be added/appended to the authorized keys file.
|
|
17860
17860
|
*/
|
|
17861
17861
|
username: pulumi.Input<string>;
|
|
17862
17862
|
}
|
|
17863
17863
|
interface LinuxVirtualMachineScaleSetAutomaticInstanceRepair {
|
|
17864
|
+
/**
|
|
17865
|
+
* The repair action that will be used for repairing unhealthy virtual machines in the scale set. Possible values include `Replace`, `Restart`, `Reimage`.
|
|
17866
|
+
*
|
|
17867
|
+
* > **Note:** Once the `action` field has been set it will always return the last value it was assigned if it is removed from the configuration file.
|
|
17868
|
+
*
|
|
17869
|
+
* > **Note:** If you wish to update the repair `action` of an existing `automaticInstanceRepair` policy, you must first `disable` the `automaticInstanceRepair` policy before you can re-enable the `automaticInstanceRepair` policy with the new repair `action` defined.
|
|
17870
|
+
*/
|
|
17871
|
+
action?: pulumi.Input<string>;
|
|
17864
17872
|
/**
|
|
17865
17873
|
* Should the automatic instance repair be enabled on this Virtual Machine Scale Set?
|
|
17866
17874
|
*/
|
|
17867
17875
|
enabled: pulumi.Input<boolean>;
|
|
17868
17876
|
/**
|
|
17869
|
-
* Amount of time
|
|
17877
|
+
* Amount of time for which automatic repairs will be delayed. The grace period starts right after the VM is found unhealthy. Possible values are between `10` and `90` minutes. The time duration should be specified in `ISO 8601` format (e.g. `PT10M` to `PT90M`).
|
|
17878
|
+
*
|
|
17879
|
+
* > **Note:** Once the `gracePeriod` field has been set it will always return the last value it was assigned if it is removed from the configuration file.
|
|
17870
17880
|
*/
|
|
17871
17881
|
gracePeriod?: pulumi.Input<string>;
|
|
17872
17882
|
}
|
|
@@ -17884,7 +17894,7 @@ export declare namespace compute {
|
|
|
17884
17894
|
/**
|
|
17885
17895
|
* The Primary/Secondary Endpoint for the Azure Storage Account which should be used to store Boot Diagnostics, including Console Output and Screenshots from the Hypervisor.
|
|
17886
17896
|
*
|
|
17887
|
-
* > **
|
|
17897
|
+
* > **Note:** Passing a null value will utilize a Managed Storage Account to store Boot Diagnostics.
|
|
17888
17898
|
*/
|
|
17889
17899
|
storageAccountUri?: pulumi.Input<string>;
|
|
17890
17900
|
}
|
|
@@ -17900,9 +17910,9 @@ export declare namespace compute {
|
|
|
17900
17910
|
/**
|
|
17901
17911
|
* The ID of the Disk Encryption Set which should be used to encrypt this Data Disk. Changing this forces a new resource to be created.
|
|
17902
17912
|
*
|
|
17903
|
-
* > **
|
|
17913
|
+
* > **Note:** The Disk Encryption Set must have the `Reader` Role Assignment scoped on the Key Vault - in addition to an Access Policy to the Key Vault
|
|
17904
17914
|
*
|
|
17905
|
-
* > **
|
|
17915
|
+
* > **Note:** Disk Encryption Sets are in Public Preview in a limited set of regions
|
|
17906
17916
|
*/
|
|
17907
17917
|
diskEncryptionSetId?: pulumi.Input<string>;
|
|
17908
17918
|
/**
|
|
@@ -17920,7 +17930,7 @@ export declare namespace compute {
|
|
|
17920
17930
|
/**
|
|
17921
17931
|
* The Type of Storage Account which should back this Data Disk. Possible values include `Standard_LRS`, `StandardSSD_LRS`, `StandardSSD_ZRS`, `Premium_LRS`, `PremiumV2_LRS`, `Premium_ZRS` and `UltraSSD_LRS`.
|
|
17922
17932
|
*
|
|
17923
|
-
* > **
|
|
17933
|
+
* > **Note:** `UltraSSD_LRS` is only supported when `ultraSsdEnabled` within the `additionalCapabilities` block is enabled.
|
|
17924
17934
|
*/
|
|
17925
17935
|
storageAccountType: pulumi.Input<string>;
|
|
17926
17936
|
/**
|
|
@@ -17934,7 +17944,7 @@ export declare namespace compute {
|
|
|
17934
17944
|
/**
|
|
17935
17945
|
* Should Write Accelerator be enabled for this Data Disk? Defaults to `false`.
|
|
17936
17946
|
*
|
|
17937
|
-
* > **
|
|
17947
|
+
* > **Note:** This requires that the `storageAccountType` is set to `Premium_LRS` and that `caching` is set to `None`.
|
|
17938
17948
|
*/
|
|
17939
17949
|
writeAcceleratorEnabled?: pulumi.Input<boolean>;
|
|
17940
17950
|
}
|
|
@@ -17958,9 +17968,14 @@ export declare namespace compute {
|
|
|
17958
17968
|
/**
|
|
17959
17969
|
* A JSON String which specifies Sensitive Settings (such as Passwords) for the Extension.
|
|
17960
17970
|
*
|
|
17961
|
-
* > **
|
|
17971
|
+
* > **Note:** Keys within the `protectedSettings` block are notoriously case-sensitive, where the casing required (e.g. TitleCase vs snakeCase) depends on the Extension being used. Please refer to the documentation for the specific Virtual Machine Extension you're looking to use for more information.
|
|
17962
17972
|
*/
|
|
17963
17973
|
protectedSettings?: pulumi.Input<string>;
|
|
17974
|
+
/**
|
|
17975
|
+
* A `protectedSettingsFromKeyVault` block as defined below.
|
|
17976
|
+
*
|
|
17977
|
+
* > **Note:** `protectedSettingsFromKeyVault` cannot be used with `protectedSettings`
|
|
17978
|
+
*/
|
|
17964
17979
|
protectedSettingsFromKeyVault?: pulumi.Input<inputs.compute.LinuxVirtualMachineScaleSetExtensionProtectedSettingsFromKeyVault>;
|
|
17965
17980
|
/**
|
|
17966
17981
|
* An ordered list of Extension names which this should be provisioned after.
|
|
@@ -17973,7 +17988,7 @@ export declare namespace compute {
|
|
|
17973
17988
|
/**
|
|
17974
17989
|
* A JSON String which specifies Settings for the Extension.
|
|
17975
17990
|
*
|
|
17976
|
-
* > **
|
|
17991
|
+
* > **Note:** Keys within the `settings` block are notoriously case-sensitive, where the casing required (e.g. TitleCase vs snakeCase) depends on the Extension being used. Please refer to the documentation for the specific Virtual Machine Extension you're looking to use for more information.
|
|
17977
17992
|
*/
|
|
17978
17993
|
settings?: pulumi.Input<string>;
|
|
17979
17994
|
/**
|
|
@@ -18014,7 +18029,7 @@ export declare namespace compute {
|
|
|
18014
18029
|
/**
|
|
18015
18030
|
* Specifies a list of User Assigned Managed Identity IDs to be assigned to this Linux Virtual Machine Scale Set.
|
|
18016
18031
|
*
|
|
18017
|
-
* > **
|
|
18032
|
+
* > **Note:** This is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`.
|
|
18018
18033
|
*/
|
|
18019
18034
|
identityIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
18020
18035
|
/**
|
|
@@ -18058,7 +18073,7 @@ export declare namespace compute {
|
|
|
18058
18073
|
/**
|
|
18059
18074
|
* Is this the Primary IP Configuration?
|
|
18060
18075
|
*
|
|
18061
|
-
* > **
|
|
18076
|
+
* > **Note:** If multiple `networkInterface` blocks are specified, one must be set to `primary`.
|
|
18062
18077
|
*/
|
|
18063
18078
|
primary?: pulumi.Input<boolean>;
|
|
18064
18079
|
}
|
|
@@ -18074,15 +18089,15 @@ export declare namespace compute {
|
|
|
18074
18089
|
/**
|
|
18075
18090
|
* A list of Backend Address Pools ID's from a Load Balancer which this Virtual Machine Scale Set should be connected to.
|
|
18076
18091
|
*
|
|
18077
|
-
* > **
|
|
18092
|
+
* > **Note:** When the Virtual Machine Scale Set is configured to have public IPs per instance are created with a load balancer, the SKU of the Virtual Machine instance IPs is determined by the SKU of the Virtual Machine Scale Sets Load Balancer (e.g. `Basic` or `Standard`). Alternatively, you may use the `publicIpPrefixId` field to generate instance-level IPs in a virtual machine scale set as well. The zonal properties of the prefix will be passed to the Virtual Machine instance IPs, though they will not be shown in the output. To view the public IP addresses assigned to the Virtual Machine Scale Sets Virtual Machine instances use the **az vmss list-instance-public-ips --resource-group `ResourceGroupName` --name `VirtualMachineScaleSetName`** CLI command.
|
|
18078
18093
|
*
|
|
18079
|
-
* > **
|
|
18094
|
+
* > **Note:** When using this field you'll also need to configure a Rule for the Load Balancer, and use a `dependsOn` between this resource and the Load Balancer Rule.
|
|
18080
18095
|
*/
|
|
18081
18096
|
loadBalancerBackendAddressPoolIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
18082
18097
|
/**
|
|
18083
18098
|
* A list of NAT Rule ID's from a Load Balancer which this Virtual Machine Scale Set should be connected to.
|
|
18084
18099
|
*
|
|
18085
|
-
* > **
|
|
18100
|
+
* > **Note:** When using this field you'll also need to configure a Rule for the Load Balancer, and use a `dependsOn` between this resource and the Load Balancer Rule.
|
|
18086
18101
|
*/
|
|
18087
18102
|
loadBalancerInboundNatRulesIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
18088
18103
|
/**
|
|
@@ -18092,7 +18107,7 @@ export declare namespace compute {
|
|
|
18092
18107
|
/**
|
|
18093
18108
|
* Is this the Primary IP Configuration for this Network Interface? Defaults to `false`.
|
|
18094
18109
|
*
|
|
18095
|
-
* > **
|
|
18110
|
+
* > **Note:** One `ipConfiguration` block must be marked as Primary for each Network Interface.
|
|
18096
18111
|
*/
|
|
18097
18112
|
primary?: pulumi.Input<boolean>;
|
|
18098
18113
|
/**
|
|
@@ -18130,7 +18145,7 @@ export declare namespace compute {
|
|
|
18130
18145
|
/**
|
|
18131
18146
|
* The ID of the Public IP Address Prefix from where Public IP Addresses should be allocated. Changing this forces a new resource to be created.
|
|
18132
18147
|
*
|
|
18133
|
-
* > **
|
|
18148
|
+
* > **Note:** This functionality is in Preview and must be opted into via `az feature register --namespace Microsoft.Network --name AllowBringYourOwnPublicIpAddress` and then `az provider register -n Microsoft.Network`.
|
|
18134
18149
|
*/
|
|
18135
18150
|
publicIpPrefixId?: pulumi.Input<string>;
|
|
18136
18151
|
/**
|
|
@@ -18160,29 +18175,29 @@ export declare namespace compute {
|
|
|
18160
18175
|
/**
|
|
18161
18176
|
* The ID of the Disk Encryption Set which should be used to encrypt this OS Disk. Conflicts with `secureVmDiskEncryptionSetId`. Changing this forces a new resource to be created.
|
|
18162
18177
|
*
|
|
18163
|
-
* > **
|
|
18178
|
+
* > **Note:** The Disk Encryption Set must have the `Reader` Role Assignment scoped on the Key Vault - in addition to an Access Policy to the Key Vault
|
|
18164
18179
|
*
|
|
18165
|
-
* > **
|
|
18180
|
+
* > **Note:** Disk Encryption Sets are in Public Preview in a limited set of regions
|
|
18166
18181
|
*/
|
|
18167
18182
|
diskEncryptionSetId?: pulumi.Input<string>;
|
|
18168
18183
|
/**
|
|
18169
18184
|
* The Size of the Internal OS Disk in GB, if you wish to vary from the size used in the image this Virtual Machine Scale Set is sourced from.
|
|
18170
18185
|
*
|
|
18171
|
-
* > **
|
|
18186
|
+
* > **Note:** If specified this must be equal to or larger than the size of the Image the VM Scale Set is based on. When creating a larger disk than exists in the image you'll need to repartition the disk to use the remaining space.
|
|
18172
18187
|
*/
|
|
18173
18188
|
diskSizeGb?: pulumi.Input<number>;
|
|
18174
18189
|
/**
|
|
18175
18190
|
* The ID of the Disk Encryption Set which should be used to Encrypt the OS Disk when the Virtual Machine Scale Set is Confidential VMSS. Conflicts with `diskEncryptionSetId`. Changing this forces a new resource to be created.
|
|
18176
18191
|
*
|
|
18177
|
-
* > **
|
|
18192
|
+
* > **Note:** `secureVmDiskEncryptionSetId` can only be specified when `securityEncryptionType` is set to `DiskWithVMGuestState`.
|
|
18178
18193
|
*/
|
|
18179
18194
|
secureVmDiskEncryptionSetId?: pulumi.Input<string>;
|
|
18180
18195
|
/**
|
|
18181
18196
|
* Encryption Type when the Virtual Machine Scale Set is Confidential VMSS. Possible values are `VMGuestStateOnly` and `DiskWithVMGuestState`. Changing this forces a new resource to be created.
|
|
18182
18197
|
*
|
|
18183
|
-
* > **
|
|
18198
|
+
* > **Note:** `vtpmEnabled` must be set to `true` when `securityEncryptionType` is specified.
|
|
18184
18199
|
*
|
|
18185
|
-
* > **
|
|
18200
|
+
* > **Note:** `encryptionAtHostEnabled` cannot be set to `true` when `securityEncryptionType` is set to `DiskWithVMGuestState`.
|
|
18186
18201
|
*/
|
|
18187
18202
|
securityEncryptionType?: pulumi.Input<string>;
|
|
18188
18203
|
/**
|
|
@@ -18192,7 +18207,7 @@ export declare namespace compute {
|
|
|
18192
18207
|
/**
|
|
18193
18208
|
* Should Write Accelerator be Enabled for this OS Disk? Defaults to `false`.
|
|
18194
18209
|
*
|
|
18195
|
-
* > **
|
|
18210
|
+
* > **Note:** This requires that the `storageAccountType` is set to `Premium_LRS` and that `caching` is set to `None`.
|
|
18196
18211
|
*/
|
|
18197
18212
|
writeAcceleratorEnabled?: pulumi.Input<boolean>;
|
|
18198
18213
|
}
|
|
@@ -18240,7 +18255,7 @@ export declare namespace compute {
|
|
|
18240
18255
|
/**
|
|
18241
18256
|
* Create new virtual machines to upgrade the scale set, rather than updating the existing virtual machines. Existing virtual machines will be deleted once the new virtual machines are created for each batch. Possible values are `true` or `false`.
|
|
18242
18257
|
*
|
|
18243
|
-
* > **
|
|
18258
|
+
* > **Note:** `overprovision` must be set to `false` when `maximumSurgeInstancesEnabled` is specified.
|
|
18244
18259
|
*/
|
|
18245
18260
|
maximumSurgeInstancesEnabled?: pulumi.Input<boolean>;
|
|
18246
18261
|
/**
|
|
@@ -18276,9 +18291,9 @@ export declare namespace compute {
|
|
|
18276
18291
|
/**
|
|
18277
18292
|
* The Secret URL of a Key Vault Certificate.
|
|
18278
18293
|
*
|
|
18279
|
-
* > **
|
|
18294
|
+
* > **Note:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
|
|
18280
18295
|
*
|
|
18281
|
-
* > **
|
|
18296
|
+
* > **Note:** The certificate must have been uploaded/created in PFX format, PEM certificates are not currently supported by Azure.
|
|
18282
18297
|
*/
|
|
18283
18298
|
url: pulumi.Input<string>;
|
|
18284
18299
|
}
|
|
@@ -18318,7 +18333,7 @@ export declare namespace compute {
|
|
|
18318
18333
|
/**
|
|
18319
18334
|
* Length of time (in minutes, between 5 and 15) a notification to be sent to the VM on the instance metadata server till the VM gets deleted. The time duration should be specified in ISO 8601 format. Defaults to `PT5M`.
|
|
18320
18335
|
*
|
|
18321
|
-
* > **
|
|
18336
|
+
* > **Note:** For more information about the terminate notification, please [refer to this doc](https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-terminate-notification).
|
|
18322
18337
|
*/
|
|
18323
18338
|
timeout?: pulumi.Input<string>;
|
|
18324
18339
|
}
|
|
@@ -18330,7 +18345,7 @@ export declare namespace compute {
|
|
|
18330
18345
|
/**
|
|
18331
18346
|
* Length of time (in minutes, between 5 and 15) a notification to be sent to the VM on the instance metadata server till the VM gets deleted. The time duration should be specified in ISO 8601 format. Defaults to `PT5M`.
|
|
18332
18347
|
*
|
|
18333
|
-
* > **
|
|
18348
|
+
* > **Note:** For more information about the termination notification, please [refer to this doc](https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-terminate-notification).
|
|
18334
18349
|
*/
|
|
18335
18350
|
timeout?: pulumi.Input<string>;
|
|
18336
18351
|
}
|
|
@@ -18423,12 +18438,22 @@ export declare namespace compute {
|
|
|
18423
18438
|
ultraSsdEnabled?: pulumi.Input<boolean>;
|
|
18424
18439
|
}
|
|
18425
18440
|
interface OrchestratedVirtualMachineScaleSetAutomaticInstanceRepair {
|
|
18441
|
+
/**
|
|
18442
|
+
* The repair action that will be used for repairing unhealthy virtual machines in the scale set. Possible values include `Replace`, `Restart`, `Reimage`.
|
|
18443
|
+
*
|
|
18444
|
+
* > **Note:** Once the `action` field has been set it will always return the last value it was assigned if it is removed from the configuration file.
|
|
18445
|
+
*
|
|
18446
|
+
* > **Note:** If you wish to update the repair `action` of an existing `automaticInstanceRepair` policy, you must first `disable` the `automaticInstanceRepair` policy before you can re-enable the `automaticInstanceRepair` policy with the new repair `action` defined.
|
|
18447
|
+
*/
|
|
18448
|
+
action?: pulumi.Input<string>;
|
|
18426
18449
|
/**
|
|
18427
18450
|
* Should the automatic instance repair be enabled on this Virtual Machine Scale Set? Possible values are `true` and `false`.
|
|
18428
18451
|
*/
|
|
18429
18452
|
enabled: pulumi.Input<boolean>;
|
|
18430
18453
|
/**
|
|
18431
|
-
* Amount of time for which automatic repairs will be delayed. The grace period starts right after the VM is found unhealthy. Possible values are between `
|
|
18454
|
+
* Amount of time for which automatic repairs will be delayed. The grace period starts right after the VM is found unhealthy. Possible values are between `10` and `90` minutes. The time duration should be specified in `ISO 8601` format (e.g. `PT10M` to `PT90M`).
|
|
18455
|
+
*
|
|
18456
|
+
* > **Note:** Once the `gracePeriod` field has been set it will always return the last value it was assigned if it is removed from the configuration file.
|
|
18432
18457
|
*/
|
|
18433
18458
|
gracePeriod?: pulumi.Input<string>;
|
|
18434
18459
|
}
|
|
@@ -18488,7 +18513,7 @@ export declare namespace compute {
|
|
|
18488
18513
|
/**
|
|
18489
18514
|
* Should failures from the extension be suppressed? Possible values are `true` or `false`.
|
|
18490
18515
|
*
|
|
18491
|
-
* > **
|
|
18516
|
+
* > **Note:** Operational failures such as not connecting to the VM will not be suppressed regardless of the `failureSuppressionEnabled` value.
|
|
18492
18517
|
*/
|
|
18493
18518
|
failureSuppressionEnabled?: pulumi.Input<boolean>;
|
|
18494
18519
|
/**
|
|
@@ -18502,7 +18527,7 @@ export declare namespace compute {
|
|
|
18502
18527
|
/**
|
|
18503
18528
|
* A JSON String which specifies Sensitive Settings (such as Passwords) for the Extension.
|
|
18504
18529
|
*
|
|
18505
|
-
* > **
|
|
18530
|
+
* > **Note:** Keys within the `protectedSettings` block are notoriously case-sensitive, where the casing required (e.g. `TitleCase` vs `snakeCase`) depends on the Extension being used. Please refer to the documentation for the specific Virtual Machine Extension you're looking to use for more information.
|
|
18506
18531
|
*/
|
|
18507
18532
|
protectedSettings?: pulumi.Input<string>;
|
|
18508
18533
|
/**
|
|
@@ -18576,7 +18601,7 @@ export declare namespace compute {
|
|
|
18576
18601
|
/**
|
|
18577
18602
|
* Is this the Primary IP Configuration? Possible values are `true` and `false`. Defaults to `false`.
|
|
18578
18603
|
*
|
|
18579
|
-
* > **
|
|
18604
|
+
* > **Note:** If multiple `networkInterface` blocks are specified, one must be set to `primary`.
|
|
18580
18605
|
*/
|
|
18581
18606
|
primary?: pulumi.Input<boolean>;
|
|
18582
18607
|
}
|
|
@@ -18592,7 +18617,7 @@ export declare namespace compute {
|
|
|
18592
18617
|
/**
|
|
18593
18618
|
* A list of Backend Address Pools IDs from a Load Balancer which this Virtual Machine Scale Set should be connected to.
|
|
18594
18619
|
*
|
|
18595
|
-
* > **
|
|
18620
|
+
* > **Note:** When using this field you'll also need to configure a Rule for the Load Balancer, and use a dependsOn between this resource and the Load Balancer Rule.
|
|
18596
18621
|
*/
|
|
18597
18622
|
loadBalancerBackendAddressPoolIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
18598
18623
|
/**
|
|
@@ -18602,7 +18627,7 @@ export declare namespace compute {
|
|
|
18602
18627
|
/**
|
|
18603
18628
|
* Is this the Primary IP Configuration for this Network Interface? Possible values are `true` and `false`. Defaults to `false`.
|
|
18604
18629
|
*
|
|
18605
|
-
* > **
|
|
18630
|
+
* > **Note:** One `ipConfiguration` block must be marked as Primary for each Network Interface.
|
|
18606
18631
|
*/
|
|
18607
18632
|
primary?: pulumi.Input<boolean>;
|
|
18608
18633
|
/**
|
|
@@ -18612,7 +18637,7 @@ export declare namespace compute {
|
|
|
18612
18637
|
/**
|
|
18613
18638
|
* The ID of the Subnet which this IP Configuration should be connected to.
|
|
18614
18639
|
*
|
|
18615
|
-
* > **
|
|
18640
|
+
* > **Note:** `subnetId` is required if version is set to `IPv4`.
|
|
18616
18641
|
*/
|
|
18617
18642
|
subnetId?: pulumi.Input<string>;
|
|
18618
18643
|
/**
|
|
@@ -18672,7 +18697,7 @@ export declare namespace compute {
|
|
|
18672
18697
|
/**
|
|
18673
18698
|
* The ID of the Disk Encryption Set which should be used to encrypt this OS Disk. Changing this forces a new resource to be created.
|
|
18674
18699
|
*
|
|
18675
|
-
* > **
|
|
18700
|
+
* > **Note:** Disk Encryption Sets are in Public Preview in a limited set of regions
|
|
18676
18701
|
*/
|
|
18677
18702
|
diskEncryptionSetId?: pulumi.Input<string>;
|
|
18678
18703
|
/**
|
|
@@ -18702,7 +18727,7 @@ export declare namespace compute {
|
|
|
18702
18727
|
/**
|
|
18703
18728
|
* The Base64-Encoded Custom Data which should be used for this Virtual Machine Scale Set.
|
|
18704
18729
|
*
|
|
18705
|
-
* > **
|
|
18730
|
+
* > **Note:** When Custom Data has been configured, it's not possible to remove it without tainting the Virtual Machine Scale Set, due to a limitation of the Azure API.
|
|
18706
18731
|
*/
|
|
18707
18732
|
customData?: pulumi.Input<string>;
|
|
18708
18733
|
/**
|
|
@@ -18734,19 +18759,19 @@ export declare namespace compute {
|
|
|
18734
18759
|
/**
|
|
18735
18760
|
* When an `adminPassword` is specified `disablePasswordAuthentication` must be set to `false`. Defaults to `true`.
|
|
18736
18761
|
*
|
|
18737
|
-
* > **
|
|
18762
|
+
* > **Note:** Either `adminPassword` or `adminSshKey` must be specified.
|
|
18738
18763
|
*/
|
|
18739
18764
|
disablePasswordAuthentication?: pulumi.Input<boolean>;
|
|
18740
18765
|
/**
|
|
18741
18766
|
* Specifies the mode of VM Guest Patching for the virtual machines that are associated to the Virtual Machine Scale Set. Possible values are `AutomaticByPlatform` or `ImageDefault`. Defaults to `ImageDefault`.
|
|
18742
18767
|
*
|
|
18743
|
-
* > **
|
|
18768
|
+
* > **Note:** If the `patchAssessmentMode` is set to `AutomaticByPlatform` then the `provisionVmAgent` field must be set to `true`.
|
|
18744
18769
|
*/
|
|
18745
18770
|
patchAssessmentMode?: pulumi.Input<string>;
|
|
18746
18771
|
/**
|
|
18747
18772
|
* Specifies the mode of in-guest patching of this Windows Virtual Machine. Possible values are `ImageDefault` or `AutomaticByPlatform`. Defaults to `ImageDefault`. For more information on patch modes please see the [product documentation](https://docs.microsoft.com/azure/virtual-machines/automatic-vm-guest-patching#patch-orchestration-modes).
|
|
18748
18773
|
*
|
|
18749
|
-
* > **
|
|
18774
|
+
* > **Note:** If `patchMode` is set to `AutomaticByPlatform` the `provisionVmAgent` must be set to `true` and the `extension` must contain at least one application health extension. An example of how to correctly configure a Virtual Machine Scale Set to provision a Linux Virtual Machine with Automatic VM Guest Patching enabled can be found in the `./examples/orchestrated-vm-scale-set/automatic-vm-guest-patching` directory within the GitHub Repository.
|
|
18750
18775
|
*/
|
|
18751
18776
|
patchMode?: pulumi.Input<string>;
|
|
18752
18777
|
/**
|
|
@@ -18766,7 +18791,7 @@ export declare namespace compute {
|
|
|
18766
18791
|
/**
|
|
18767
18792
|
* The Username for which this Public SSH Key should be configured.
|
|
18768
18793
|
*
|
|
18769
|
-
* > **
|
|
18794
|
+
* > **Note:** The Azure VM Agent only allows creating SSH Keys at the path `/home/{username}/.ssh/authorized_keys` - as such this public key will be written to the authorized keys file.
|
|
18770
18795
|
*/
|
|
18771
18796
|
username: pulumi.Input<string>;
|
|
18772
18797
|
}
|
|
@@ -18784,7 +18809,7 @@ export declare namespace compute {
|
|
|
18784
18809
|
/**
|
|
18785
18810
|
* The Secret URL of a Key Vault Certificate.
|
|
18786
18811
|
*
|
|
18787
|
-
* > **
|
|
18812
|
+
* > **Note:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
|
|
18788
18813
|
*/
|
|
18789
18814
|
url: pulumi.Input<string>;
|
|
18790
18815
|
}
|
|
@@ -18812,19 +18837,19 @@ export declare namespace compute {
|
|
|
18812
18837
|
/**
|
|
18813
18838
|
* Should the VM be patched without requiring a reboot? Possible values are `true` or `false`. Defaults to `false`. For more information about hot patching please see the [product documentation](https://docs.microsoft.com/azure/automanage/automanage-hotpatch).
|
|
18814
18839
|
*
|
|
18815
|
-
* > **
|
|
18840
|
+
* > **Note:** Hotpatching can only be enabled if the `patchMode` is set to `AutomaticByPlatform`, the `provisionVmAgent` is set to `true`, your `sourceImageReference` references a hotpatching enabled image, the VM's `skuName` is set to a Azure generation 2 directory within the GitHub Repository.
|
|
18816
18841
|
*/
|
|
18817
18842
|
hotpatchingEnabled?: pulumi.Input<boolean>;
|
|
18818
18843
|
/**
|
|
18819
18844
|
* Specifies the mode of VM Guest Patching for the virtual machines that are associated to the Virtual Machine Scale Set. Possible values are `AutomaticByPlatform` or `ImageDefault`. Defaults to `ImageDefault`.
|
|
18820
18845
|
*
|
|
18821
|
-
* > **
|
|
18846
|
+
* > **Note:** If the `patchAssessmentMode` is set to `AutomaticByPlatform` then the `provisionVmAgent` field must be set to `true`.
|
|
18822
18847
|
*/
|
|
18823
18848
|
patchAssessmentMode?: pulumi.Input<string>;
|
|
18824
18849
|
/**
|
|
18825
18850
|
* Specifies the mode of in-guest patching of this Windows Virtual Machine. Possible values are `Manual`, `AutomaticByOS` and `AutomaticByPlatform`. Defaults to `AutomaticByOS`. For more information on patch modes please see the [product documentation](https://docs.microsoft.com/azure/virtual-machines/automatic-vm-guest-patching#patch-orchestration-modes).
|
|
18826
18851
|
*
|
|
18827
|
-
* > **
|
|
18852
|
+
* > **Note:** If `patchMode` is set to `AutomaticByPlatform` the `provisionVmAgent` must be set to `true` and the `extension` must contain at least one application health extension.
|
|
18828
18853
|
*/
|
|
18829
18854
|
patchMode?: pulumi.Input<string>;
|
|
18830
18855
|
/**
|
|
@@ -18872,7 +18897,7 @@ export declare namespace compute {
|
|
|
18872
18897
|
/**
|
|
18873
18898
|
* The Secret URL of a Key Vault Certificate.
|
|
18874
18899
|
*
|
|
18875
|
-
* > **
|
|
18900
|
+
* > **Note:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
|
|
18876
18901
|
*/
|
|
18877
18902
|
url: pulumi.Input<string>;
|
|
18878
18903
|
}
|
|
@@ -18880,7 +18905,7 @@ export declare namespace compute {
|
|
|
18880
18905
|
/**
|
|
18881
18906
|
* The Secret URL of a Key Vault Certificate, which must be specified when protocol is set to `Https`. Changing this forces a new resource to be created.
|
|
18882
18907
|
*
|
|
18883
|
-
* > **
|
|
18908
|
+
* > **Note:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
|
|
18884
18909
|
*/
|
|
18885
18910
|
certificateUrl?: pulumi.Input<string>;
|
|
18886
18911
|
/**
|
|
@@ -20105,12 +20130,22 @@ export declare namespace compute {
|
|
|
20105
20130
|
setting: pulumi.Input<string>;
|
|
20106
20131
|
}
|
|
20107
20132
|
interface WindowsVirtualMachineScaleSetAutomaticInstanceRepair {
|
|
20133
|
+
/**
|
|
20134
|
+
* The repair action that will be used for repairing unhealthy virtual machines in the scale set. Possible values include `Replace`, `Restart`, `Reimage`.
|
|
20135
|
+
*
|
|
20136
|
+
* > **Note:** Once the `action` field has been set it will always return the last value it was assigned if it is removed from the configuration file.
|
|
20137
|
+
*
|
|
20138
|
+
* > **Note:** If you wish to update the repair `action` of an existing `automaticInstanceRepair` policy, you must first `disable` the `automaticInstanceRepair` policy before you can re-enable the `automaticInstanceRepair` policy with the new repair `action` defined.
|
|
20139
|
+
*/
|
|
20140
|
+
action?: pulumi.Input<string>;
|
|
20108
20141
|
/**
|
|
20109
20142
|
* Should the automatic instance repair be enabled on this Virtual Machine Scale Set?
|
|
20110
20143
|
*/
|
|
20111
20144
|
enabled: pulumi.Input<boolean>;
|
|
20112
20145
|
/**
|
|
20113
|
-
* Amount of time
|
|
20146
|
+
* Amount of time for which automatic repairs will be delayed. The grace period starts right after the VM is found unhealthy. Possible values are between `10` and `90` minutes. The time duration should be specified in `ISO 8601` format (e.g. `PT10M` to `PT90M`).
|
|
20147
|
+
*
|
|
20148
|
+
* > **Note:** Once the `gracePeriod` field has been set it will always return the last value it was assigned if it is removed from the configuration file.
|
|
20114
20149
|
*/
|
|
20115
20150
|
gracePeriod?: pulumi.Input<string>;
|
|
20116
20151
|
}
|
|
@@ -20128,7 +20163,7 @@ export declare namespace compute {
|
|
|
20128
20163
|
/**
|
|
20129
20164
|
* The Primary/Secondary Endpoint for the Azure Storage Account which should be used to store Boot Diagnostics, including Console Output and Screenshots from the Hypervisor.
|
|
20130
20165
|
*
|
|
20131
|
-
* > **
|
|
20166
|
+
* > **Note:** Passing a null value will utilize a Managed Storage Account to store Boot Diagnostics
|
|
20132
20167
|
*/
|
|
20133
20168
|
storageAccountUri?: pulumi.Input<string>;
|
|
20134
20169
|
}
|
|
@@ -20144,9 +20179,9 @@ export declare namespace compute {
|
|
|
20144
20179
|
/**
|
|
20145
20180
|
* The ID of the Disk Encryption Set which should be used to encrypt this Data Disk. Changing this forces a new resource to be created.
|
|
20146
20181
|
*
|
|
20147
|
-
* > **
|
|
20182
|
+
* > **Note:** The Disk Encryption Set must have the `Reader` Role Assignment scoped on the Key Vault - in addition to an Access Policy to the Key Vault
|
|
20148
20183
|
*
|
|
20149
|
-
* > **
|
|
20184
|
+
* > **Note:** Disk Encryption Sets are in Public Preview in a limited set of regions
|
|
20150
20185
|
*/
|
|
20151
20186
|
diskEncryptionSetId?: pulumi.Input<string>;
|
|
20152
20187
|
/**
|
|
@@ -20164,7 +20199,7 @@ export declare namespace compute {
|
|
|
20164
20199
|
/**
|
|
20165
20200
|
* The Type of Storage Account which should back this Data Disk. Possible values include `Standard_LRS`, `StandardSSD_LRS`, `StandardSSD_ZRS`, `Premium_LRS`, `PremiumV2_LRS`, `Premium_ZRS` and `UltraSSD_LRS`.
|
|
20166
20201
|
*
|
|
20167
|
-
* > **
|
|
20202
|
+
* > **Note:** `UltraSSD_LRS` is only supported when `ultraSsdEnabled` within the `additionalCapabilities` block is enabled.
|
|
20168
20203
|
*/
|
|
20169
20204
|
storageAccountType: pulumi.Input<string>;
|
|
20170
20205
|
/**
|
|
@@ -20178,7 +20213,7 @@ export declare namespace compute {
|
|
|
20178
20213
|
/**
|
|
20179
20214
|
* Should Write Accelerator be enabled for this Data Disk? Defaults to `false`.
|
|
20180
20215
|
*
|
|
20181
|
-
* > **
|
|
20216
|
+
* > **Note:** This requires that the `storageAccountType` is set to `Premium_LRS` and that `caching` is set to `None`.
|
|
20182
20217
|
*/
|
|
20183
20218
|
writeAcceleratorEnabled?: pulumi.Input<boolean>;
|
|
20184
20219
|
}
|
|
@@ -20202,9 +20237,14 @@ export declare namespace compute {
|
|
|
20202
20237
|
/**
|
|
20203
20238
|
* A JSON String which specifies Sensitive Settings (such as Passwords) for the Extension.
|
|
20204
20239
|
*
|
|
20205
|
-
* > **
|
|
20240
|
+
* > **Note:** Keys within the `protectedSettings` block are notoriously case-sensitive, where the casing required (e.g. TitleCase vs snakeCase) depends on the Extension being used. Please refer to the documentation for the specific Virtual Machine Extension you're looking to use for more information.
|
|
20206
20241
|
*/
|
|
20207
20242
|
protectedSettings?: pulumi.Input<string>;
|
|
20243
|
+
/**
|
|
20244
|
+
* A `protectedSettingsFromKeyVault` block as defined below.
|
|
20245
|
+
*
|
|
20246
|
+
* > **Note:** `protectedSettingsFromKeyVault` cannot be used with `protectedSettings`
|
|
20247
|
+
*/
|
|
20208
20248
|
protectedSettingsFromKeyVault?: pulumi.Input<inputs.compute.WindowsVirtualMachineScaleSetExtensionProtectedSettingsFromKeyVault>;
|
|
20209
20249
|
/**
|
|
20210
20250
|
* An ordered list of Extension names which this should be provisioned after.
|
|
@@ -20217,7 +20257,7 @@ export declare namespace compute {
|
|
|
20217
20257
|
/**
|
|
20218
20258
|
* A JSON String which specifies Settings for the Extension.
|
|
20219
20259
|
*
|
|
20220
|
-
* > **
|
|
20260
|
+
* > **Note:** Keys within the `settings` block are notoriously case-sensitive, where the casing required (e.g. TitleCase vs snakeCase) depends on the Extension being used. Please refer to the documentation for the specific Virtual Machine Extension you're looking to use for more information.
|
|
20221
20261
|
*/
|
|
20222
20262
|
settings?: pulumi.Input<string>;
|
|
20223
20263
|
/**
|
|
@@ -20258,7 +20298,7 @@ export declare namespace compute {
|
|
|
20258
20298
|
/**
|
|
20259
20299
|
* Specifies a list of User Assigned Managed Identity IDs to be assigned to this Windows Virtual Machine Scale Set.
|
|
20260
20300
|
*
|
|
20261
|
-
* > **
|
|
20301
|
+
* > **Note:** This is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`.
|
|
20262
20302
|
*/
|
|
20263
20303
|
identityIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
20264
20304
|
/**
|
|
@@ -20302,7 +20342,7 @@ export declare namespace compute {
|
|
|
20302
20342
|
/**
|
|
20303
20343
|
* Is this the Primary IP Configuration?
|
|
20304
20344
|
*
|
|
20305
|
-
* > **
|
|
20345
|
+
* > **Note:** If multiple `networkInterface` blocks are specified, one must be set to `primary`.
|
|
20306
20346
|
*/
|
|
20307
20347
|
primary?: pulumi.Input<boolean>;
|
|
20308
20348
|
}
|
|
@@ -20318,15 +20358,15 @@ export declare namespace compute {
|
|
|
20318
20358
|
/**
|
|
20319
20359
|
* A list of Backend Address Pools ID's from a Load Balancer which this Virtual Machine Scale Set should be connected to.
|
|
20320
20360
|
*
|
|
20321
|
-
* > **
|
|
20361
|
+
* > **Note:** When the Virtual Machine Scale Set is configured to have public IPs per instance are created with a load balancer, the SKU of the Virtual Machine instance IPs is determined by the SKU of the Virtual Machine Scale Sets Load Balancer (e.g. `Basic` or `Standard`). Alternatively, you may use the `publicIpPrefixId` field to generate instance-level IPs in a virtual machine scale set as well. The zonal properties of the prefix will be passed to the Virtual Machine instance IPs, though they will not be shown in the output. To view the public IP addresses assigned to the Virtual Machine Scale Sets Virtual Machine instances use the **az vmss list-instance-public-ips --resource-group `ResourceGroupName` --name `VirtualMachineScaleSetName`** CLI command.
|
|
20322
20362
|
*
|
|
20323
|
-
* > **
|
|
20363
|
+
* > **Note:** When using this field you'll also need to configure a Rule for the Load Balancer, and use a `dependsOn` between this resource and the Load Balancer Rule.
|
|
20324
20364
|
*/
|
|
20325
20365
|
loadBalancerBackendAddressPoolIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
20326
20366
|
/**
|
|
20327
20367
|
* A list of NAT Rule ID's from a Load Balancer which this Virtual Machine Scale Set should be connected to.
|
|
20328
20368
|
*
|
|
20329
|
-
* > **
|
|
20369
|
+
* > **Note:** When using this field you'll also need to configure a Rule for the Load Balancer, and use a `dependsOn` between this resource and the Load Balancer Rule.
|
|
20330
20370
|
*/
|
|
20331
20371
|
loadBalancerInboundNatRulesIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
20332
20372
|
/**
|
|
@@ -20336,7 +20376,7 @@ export declare namespace compute {
|
|
|
20336
20376
|
/**
|
|
20337
20377
|
* Is this the Primary IP Configuration for this Network Interface? Defaults to `false`.
|
|
20338
20378
|
*
|
|
20339
|
-
* > **
|
|
20379
|
+
* > **Note:** One `ipConfiguration` block must be marked as Primary for each Network Interface.
|
|
20340
20380
|
*/
|
|
20341
20381
|
primary?: pulumi.Input<boolean>;
|
|
20342
20382
|
/**
|
|
@@ -20374,7 +20414,7 @@ export declare namespace compute {
|
|
|
20374
20414
|
/**
|
|
20375
20415
|
* The ID of the Public IP Address Prefix from where Public IP Addresses should be allocated. Changing this forces a new resource to be created.
|
|
20376
20416
|
*
|
|
20377
|
-
* > **
|
|
20417
|
+
* > **Note:** This functionality is in Preview and must be opted into via `az feature register --namespace Microsoft.Network --name AllowBringYourOwnPublicIpAddress` and then `az provider register -n Microsoft.Network`.
|
|
20378
20418
|
*/
|
|
20379
20419
|
publicIpPrefixId?: pulumi.Input<string>;
|
|
20380
20420
|
/**
|
|
@@ -20404,29 +20444,29 @@ export declare namespace compute {
|
|
|
20404
20444
|
/**
|
|
20405
20445
|
* The ID of the Disk Encryption Set which should be used to encrypt this OS Disk. Conflicts with `secureVmDiskEncryptionSetId`. Changing this forces a new resource to be created.
|
|
20406
20446
|
*
|
|
20407
|
-
* > **
|
|
20447
|
+
* > **Note:** The Disk Encryption Set must have the `Reader` Role Assignment scoped on the Key Vault - in addition to an Access Policy to the Key Vault
|
|
20408
20448
|
*
|
|
20409
|
-
* > **
|
|
20449
|
+
* > **Note:** Disk Encryption Sets are in Public Preview in a limited set of regions
|
|
20410
20450
|
*/
|
|
20411
20451
|
diskEncryptionSetId?: pulumi.Input<string>;
|
|
20412
20452
|
/**
|
|
20413
20453
|
* The Size of the Internal OS Disk in GB, if you wish to vary from the size used in the image this Virtual Machine Scale Set is sourced from.
|
|
20414
20454
|
*
|
|
20415
|
-
* > **
|
|
20455
|
+
* > **Note:** If specified this must be equal to or larger than the size of the Image the VM Scale Set is based on. When creating a larger disk than exists in the image you'll need to repartition the disk to use the remaining space.
|
|
20416
20456
|
*/
|
|
20417
20457
|
diskSizeGb?: pulumi.Input<number>;
|
|
20418
20458
|
/**
|
|
20419
20459
|
* The ID of the Disk Encryption Set which should be used to Encrypt the OS Disk when the Virtual Machine Scale Set is Confidential VMSS. Conflicts with `diskEncryptionSetId`. Changing this forces a new resource to be created.
|
|
20420
20460
|
*
|
|
20421
|
-
* > **
|
|
20461
|
+
* > **Note:** `secureVmDiskEncryptionSetId` can only be specified when `securityEncryptionType` is set to `DiskWithVMGuestState`.
|
|
20422
20462
|
*/
|
|
20423
20463
|
secureVmDiskEncryptionSetId?: pulumi.Input<string>;
|
|
20424
20464
|
/**
|
|
20425
20465
|
* Encryption Type when the Virtual Machine Scale Set is Confidential VMSS. Possible values are `VMGuestStateOnly` and `DiskWithVMGuestState`. Changing this forces a new resource to be created.
|
|
20426
20466
|
*
|
|
20427
|
-
* > **
|
|
20467
|
+
* > **Note:** `vtpmEnabled` must be set to `true` when `securityEncryptionType` is specified.
|
|
20428
20468
|
*
|
|
20429
|
-
* > **
|
|
20469
|
+
* > **Note:** `encryptionAtHostEnabled` cannot be set to `true` when `securityEncryptionType` is set to `DiskWithVMGuestState`.
|
|
20430
20470
|
*/
|
|
20431
20471
|
securityEncryptionType?: pulumi.Input<string>;
|
|
20432
20472
|
/**
|
|
@@ -20436,7 +20476,7 @@ export declare namespace compute {
|
|
|
20436
20476
|
/**
|
|
20437
20477
|
* Should Write Accelerator be Enabled for this OS Disk? Defaults to `false`.
|
|
20438
20478
|
*
|
|
20439
|
-
* > **
|
|
20479
|
+
* > **Note:** This requires that the `storageAccountType` is set to `Premium_LRS` and that `caching` is set to `None`.
|
|
20440
20480
|
*/
|
|
20441
20481
|
writeAcceleratorEnabled?: pulumi.Input<boolean>;
|
|
20442
20482
|
}
|
|
@@ -20484,7 +20524,7 @@ export declare namespace compute {
|
|
|
20484
20524
|
/**
|
|
20485
20525
|
* Create new virtual machines to upgrade the scale set, rather than updating the existing virtual machines. Existing virtual machines will be deleted once the new virtual machines are created for each batch. Possible values are `true` or `false`.
|
|
20486
20526
|
*
|
|
20487
|
-
* > **
|
|
20527
|
+
* > **Note:** `overprovision` must be set to `false` when `maximumSurgeInstancesEnabled` is specified.
|
|
20488
20528
|
*/
|
|
20489
20529
|
maximumSurgeInstancesEnabled?: pulumi.Input<boolean>;
|
|
20490
20530
|
/**
|
|
@@ -20524,7 +20564,7 @@ export declare namespace compute {
|
|
|
20524
20564
|
/**
|
|
20525
20565
|
* The Secret URL of a Key Vault Certificate.
|
|
20526
20566
|
*
|
|
20527
|
-
* > **
|
|
20567
|
+
* > **Note:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
|
|
20528
20568
|
*/
|
|
20529
20569
|
url: pulumi.Input<string>;
|
|
20530
20570
|
}
|
|
@@ -20576,7 +20616,7 @@ export declare namespace compute {
|
|
|
20576
20616
|
/**
|
|
20577
20617
|
* Length of time (in minutes, between 5 and 15) a notification to be sent to the VM on the instance metadata server till the VM gets deleted. The time duration should be specified in ISO 8601 format. Defaults to `PT5M`.
|
|
20578
20618
|
*
|
|
20579
|
-
* > **
|
|
20619
|
+
* > **Note:** For more information about the termination notification, please [refer to this doc](https://docs.microsoft.com/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-terminate-notification).
|
|
20580
20620
|
*/
|
|
20581
20621
|
timeout?: pulumi.Input<string>;
|
|
20582
20622
|
}
|
|
@@ -20584,7 +20624,7 @@ export declare namespace compute {
|
|
|
20584
20624
|
/**
|
|
20585
20625
|
* The Secret URL of a Key Vault Certificate, which must be specified when `protocol` is set to `Https`. Changing this forces a new resource to be created.
|
|
20586
20626
|
*
|
|
20587
|
-
* > **
|
|
20627
|
+
* > **Note:** This can be sourced from the `secretId` field within the `azure.keyvault.Certificate` Resource.
|
|
20588
20628
|
*/
|
|
20589
20629
|
certificateUrl?: pulumi.Input<string>;
|
|
20590
20630
|
/**
|
|
@@ -40353,7 +40393,7 @@ export declare namespace monitoring {
|
|
|
40353
40393
|
*/
|
|
40354
40394
|
name: pulumi.Input<string>;
|
|
40355
40395
|
/**
|
|
40356
|
-
* The number of seconds between consecutive counter measurements (samples). The value should be integer between `1` and `
|
|
40396
|
+
* The number of seconds between consecutive counter measurements (samples). The value should be integer between `1` and `1800` inclusive. `samplingFrequencyInSeconds` must be equal to `60` seconds for counters collected with `Microsoft-InsightsMetrics` stream.
|
|
40357
40397
|
*/
|
|
40358
40398
|
samplingFrequencyInSeconds: pulumi.Input<number>;
|
|
40359
40399
|
/**
|
|
@@ -46640,6 +46680,8 @@ export declare namespace postgresql {
|
|
|
46640
46680
|
startHour?: pulumi.Input<number>;
|
|
46641
46681
|
/**
|
|
46642
46682
|
* The start minute for maintenance window. Defaults to `0`.
|
|
46683
|
+
*
|
|
46684
|
+
* > **NOTE** The specified `maintenanceWindow` is always defined in UTC time. When unspecified, the maintenance window falls back to the default [system-managed](https://learn.microsoft.com/en-us/azure/postgresql/flexible-server/how-to-maintenance-portal#specify-maintenance-schedule-options).
|
|
46643
46685
|
*/
|
|
46644
46686
|
startMinute?: pulumi.Input<number>;
|
|
46645
46687
|
}
|
|
@@ -49632,6 +49674,10 @@ export declare namespace storage {
|
|
|
49632
49674
|
* A `activeDirectory` block as defined below. Required when `directoryType` is `AD`.
|
|
49633
49675
|
*/
|
|
49634
49676
|
activeDirectory?: pulumi.Input<inputs.storage.AccountAzureFilesAuthenticationActiveDirectory>;
|
|
49677
|
+
/**
|
|
49678
|
+
* Specifies the default share level permissions applied to all users. Possible values are `StorageFileDataSmbShareReader`, `StorageFileDataSmbShareContributor`, `StorageFileDataSmbShareElevatedContributor`, or `None`.
|
|
49679
|
+
*/
|
|
49680
|
+
defaultShareLevelPermission?: pulumi.Input<string>;
|
|
49635
49681
|
/**
|
|
49636
49682
|
* Specifies the directory service used. Possible values are `AADDS`, `AD` and `AADKERB`.
|
|
49637
49683
|
*/
|
|
@@ -51388,11 +51434,11 @@ export declare namespace waf {
|
|
|
51388
51434
|
*/
|
|
51389
51435
|
ruleGroups?: pulumi.Input<pulumi.Input<inputs.waf.PolicyManagedRulesExclusionExcludedRuleSetRuleGroup>[]>;
|
|
51390
51436
|
/**
|
|
51391
|
-
* The rule set type.
|
|
51437
|
+
* The rule set type. Possible values are `Microsoft_DefaultRuleSet`, `Microsoft_BotManagerRuleSet` and `OWASP`. Defaults to `OWASP`.
|
|
51392
51438
|
*/
|
|
51393
51439
|
type?: pulumi.Input<string>;
|
|
51394
51440
|
/**
|
|
51395
|
-
* The rule set version.
|
|
51441
|
+
* The rule set version. Possible values are `1.0` (for rule set type `Microsoft_BotManagerRuleSet`), `2.1` (for rule set type `Microsoft_DefaultRuleSet`) and `3.2` (for rule set type `OWASP`). Defaults to `3.2`.
|
|
51396
51442
|
*/
|
|
51397
51443
|
version?: pulumi.Input<string>;
|
|
51398
51444
|
}
|