azure-native.compute.VirtualMachineScaleSetVMExtension
Explore with Pulumi AI
Describes a VMSS VM Extension. Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2021-03-01.
Other available API versions: 2019-12-01, 2021-11-01, 2023-07-01, 2023-09-01, 2024-03-01.
Example Usage
Create VirtualMachineScaleSet VM extension.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var virtualMachineScaleSetVMExtension = new AzureNative.Compute.VirtualMachineScaleSetVMExtension("virtualMachineScaleSetVMExtension", new()
{
AutoUpgradeMinorVersion = true,
InstanceId = "0",
Publisher = "extPublisher",
ResourceGroupName = "myResourceGroup",
Settings = new Dictionary<string, object?>
{
["UserName"] = "xyz@microsoft.com",
},
Type = "extType",
TypeHandlerVersion = "1.2",
VmExtensionName = "myVMExtension",
VmScaleSetName = "myvmScaleSet",
});
});
package main
import (
compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := compute.NewVirtualMachineScaleSetVMExtension(ctx, "virtualMachineScaleSetVMExtension", &compute.VirtualMachineScaleSetVMExtensionArgs{
AutoUpgradeMinorVersion: pulumi.Bool(true),
InstanceId: pulumi.String("0"),
Publisher: pulumi.String("extPublisher"),
ResourceGroupName: pulumi.String("myResourceGroup"),
Settings: pulumi.Any(map[string]interface{}{
"UserName": "xyz@microsoft.com",
}),
Type: pulumi.String("extType"),
TypeHandlerVersion: pulumi.String("1.2"),
VmExtensionName: pulumi.String("myVMExtension"),
VmScaleSetName: pulumi.String("myvmScaleSet"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.VirtualMachineScaleSetVMExtension;
import com.pulumi.azurenative.compute.VirtualMachineScaleSetVMExtensionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var virtualMachineScaleSetVMExtension = new VirtualMachineScaleSetVMExtension("virtualMachineScaleSetVMExtension", VirtualMachineScaleSetVMExtensionArgs.builder()
.autoUpgradeMinorVersion(true)
.instanceId("0")
.publisher("extPublisher")
.resourceGroupName("myResourceGroup")
.settings(Map.of("UserName", "xyz@microsoft.com"))
.type("extType")
.typeHandlerVersion("1.2")
.vmExtensionName("myVMExtension")
.vmScaleSetName("myvmScaleSet")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
virtual_machine_scale_set_vm_extension = azure_native.compute.VirtualMachineScaleSetVMExtension("virtualMachineScaleSetVMExtension",
auto_upgrade_minor_version=True,
instance_id="0",
publisher="extPublisher",
resource_group_name="myResourceGroup",
settings={
"UserName": "xyz@microsoft.com",
},
type="extType",
type_handler_version="1.2",
vm_extension_name="myVMExtension",
vm_scale_set_name="myvmScaleSet")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const virtualMachineScaleSetVMExtension = new azure_native.compute.VirtualMachineScaleSetVMExtension("virtualMachineScaleSetVMExtension", {
autoUpgradeMinorVersion: true,
instanceId: "0",
publisher: "extPublisher",
resourceGroupName: "myResourceGroup",
settings: {
UserName: "xyz@microsoft.com",
},
type: "extType",
typeHandlerVersion: "1.2",
vmExtensionName: "myVMExtension",
vmScaleSetName: "myvmScaleSet",
});
resources:
virtualMachineScaleSetVMExtension:
type: azure-native:compute:VirtualMachineScaleSetVMExtension
properties:
autoUpgradeMinorVersion: true
instanceId: '0'
publisher: extPublisher
resourceGroupName: myResourceGroup
settings:
UserName: xyz@microsoft.com
type: extType
typeHandlerVersion: '1.2'
vmExtensionName: myVMExtension
vmScaleSetName: myvmScaleSet
Create VirtualMachineScaleSetVMExtension Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VirtualMachineScaleSetVMExtension(name: string, args: VirtualMachineScaleSetVMExtensionArgs, opts?: CustomResourceOptions);
@overload
def VirtualMachineScaleSetVMExtension(resource_name: str,
args: VirtualMachineScaleSetVMExtensionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VirtualMachineScaleSetVMExtension(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
vm_scale_set_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
provision_after_extensions: Optional[Sequence[str]] = None,
force_update_tag: Optional[str] = None,
location: Optional[str] = None,
protected_settings: Optional[Any] = None,
protected_settings_from_key_vault: Optional[KeyVaultSecretReferenceArgs] = None,
auto_upgrade_minor_version: Optional[bool] = None,
publisher: Optional[str] = None,
instance_view: Optional[VirtualMachineExtensionInstanceViewArgs] = None,
settings: Optional[Any] = None,
suppress_failures: Optional[bool] = None,
type: Optional[str] = None,
type_handler_version: Optional[str] = None,
vm_extension_name: Optional[str] = None,
enable_automatic_upgrade: Optional[bool] = None)
func NewVirtualMachineScaleSetVMExtension(ctx *Context, name string, args VirtualMachineScaleSetVMExtensionArgs, opts ...ResourceOption) (*VirtualMachineScaleSetVMExtension, error)
public VirtualMachineScaleSetVMExtension(string name, VirtualMachineScaleSetVMExtensionArgs args, CustomResourceOptions? opts = null)
public VirtualMachineScaleSetVMExtension(String name, VirtualMachineScaleSetVMExtensionArgs args)
public VirtualMachineScaleSetVMExtension(String name, VirtualMachineScaleSetVMExtensionArgs args, CustomResourceOptions options)
type: azure-native:compute:VirtualMachineScaleSetVMExtension
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args VirtualMachineScaleSetVMExtensionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VirtualMachineScaleSetVMExtensionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VirtualMachineScaleSetVMExtensionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VirtualMachineScaleSetVMExtensionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VirtualMachineScaleSetVMExtensionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var virtualMachineScaleSetVMExtensionResource = new AzureNative.Compute.VirtualMachineScaleSetVMExtension("virtualMachineScaleSetVMExtensionResource", new()
{
InstanceId = "string",
VmScaleSetName = "string",
ResourceGroupName = "string",
ProvisionAfterExtensions = new[]
{
"string",
},
ForceUpdateTag = "string",
Location = "string",
ProtectedSettings = "any",
ProtectedSettingsFromKeyVault = new AzureNative.Compute.Inputs.KeyVaultSecretReferenceArgs
{
SecretUrl = "string",
SourceVault = new AzureNative.Compute.Inputs.SubResourceArgs
{
Id = "string",
},
},
AutoUpgradeMinorVersion = false,
Publisher = "string",
InstanceView = new AzureNative.Compute.Inputs.VirtualMachineExtensionInstanceViewArgs
{
Name = "string",
Statuses = new[]
{
new AzureNative.Compute.Inputs.InstanceViewStatusArgs
{
Code = "string",
DisplayStatus = "string",
Level = AzureNative.Compute.StatusLevelTypes.Info,
Message = "string",
Time = "string",
},
},
Substatuses = new[]
{
new AzureNative.Compute.Inputs.InstanceViewStatusArgs
{
Code = "string",
DisplayStatus = "string",
Level = AzureNative.Compute.StatusLevelTypes.Info,
Message = "string",
Time = "string",
},
},
Type = "string",
TypeHandlerVersion = "string",
},
Settings = "any",
SuppressFailures = false,
Type = "string",
TypeHandlerVersion = "string",
VmExtensionName = "string",
EnableAutomaticUpgrade = false,
});
example, err := compute.NewVirtualMachineScaleSetVMExtension(ctx, "virtualMachineScaleSetVMExtensionResource", &compute.VirtualMachineScaleSetVMExtensionArgs{
InstanceId: pulumi.String("string"),
VmScaleSetName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ProvisionAfterExtensions: pulumi.StringArray{
pulumi.String("string"),
},
ForceUpdateTag: pulumi.String("string"),
Location: pulumi.String("string"),
ProtectedSettings: pulumi.Any("any"),
ProtectedSettingsFromKeyVault: &compute.KeyVaultSecretReferenceArgs{
SecretUrl: pulumi.String("string"),
SourceVault: &compute.SubResourceArgs{
Id: pulumi.String("string"),
},
},
AutoUpgradeMinorVersion: pulumi.Bool(false),
Publisher: pulumi.String("string"),
InstanceView: &compute.VirtualMachineExtensionInstanceViewArgs{
Name: pulumi.String("string"),
Statuses: compute.InstanceViewStatusArray{
&compute.InstanceViewStatusArgs{
Code: pulumi.String("string"),
DisplayStatus: pulumi.String("string"),
Level: compute.StatusLevelTypesInfo,
Message: pulumi.String("string"),
Time: pulumi.String("string"),
},
},
Substatuses: compute.InstanceViewStatusArray{
&compute.InstanceViewStatusArgs{
Code: pulumi.String("string"),
DisplayStatus: pulumi.String("string"),
Level: compute.StatusLevelTypesInfo,
Message: pulumi.String("string"),
Time: pulumi.String("string"),
},
},
Type: pulumi.String("string"),
TypeHandlerVersion: pulumi.String("string"),
},
Settings: pulumi.Any("any"),
SuppressFailures: pulumi.Bool(false),
Type: pulumi.String("string"),
TypeHandlerVersion: pulumi.String("string"),
VmExtensionName: pulumi.String("string"),
EnableAutomaticUpgrade: pulumi.Bool(false),
})
var virtualMachineScaleSetVMExtensionResource = new VirtualMachineScaleSetVMExtension("virtualMachineScaleSetVMExtensionResource", VirtualMachineScaleSetVMExtensionArgs.builder()
.instanceId("string")
.vmScaleSetName("string")
.resourceGroupName("string")
.provisionAfterExtensions("string")
.forceUpdateTag("string")
.location("string")
.protectedSettings("any")
.protectedSettingsFromKeyVault(KeyVaultSecretReferenceArgs.builder()
.secretUrl("string")
.sourceVault(SubResourceArgs.builder()
.id("string")
.build())
.build())
.autoUpgradeMinorVersion(false)
.publisher("string")
.instanceView(VirtualMachineExtensionInstanceViewArgs.builder()
.name("string")
.statuses(InstanceViewStatusArgs.builder()
.code("string")
.displayStatus("string")
.level("Info")
.message("string")
.time("string")
.build())
.substatuses(InstanceViewStatusArgs.builder()
.code("string")
.displayStatus("string")
.level("Info")
.message("string")
.time("string")
.build())
.type("string")
.typeHandlerVersion("string")
.build())
.settings("any")
.suppressFailures(false)
.type("string")
.typeHandlerVersion("string")
.vmExtensionName("string")
.enableAutomaticUpgrade(false)
.build());
virtual_machine_scale_set_vm_extension_resource = azure_native.compute.VirtualMachineScaleSetVMExtension("virtualMachineScaleSetVMExtensionResource",
instance_id="string",
vm_scale_set_name="string",
resource_group_name="string",
provision_after_extensions=["string"],
force_update_tag="string",
location="string",
protected_settings="any",
protected_settings_from_key_vault=azure_native.compute.KeyVaultSecretReferenceArgs(
secret_url="string",
source_vault=azure_native.compute.SubResourceArgs(
id="string",
),
),
auto_upgrade_minor_version=False,
publisher="string",
instance_view=azure_native.compute.VirtualMachineExtensionInstanceViewArgs(
name="string",
statuses=[azure_native.compute.InstanceViewStatusArgs(
code="string",
display_status="string",
level=azure_native.compute.StatusLevelTypes.INFO,
message="string",
time="string",
)],
substatuses=[azure_native.compute.InstanceViewStatusArgs(
code="string",
display_status="string",
level=azure_native.compute.StatusLevelTypes.INFO,
message="string",
time="string",
)],
type="string",
type_handler_version="string",
),
settings="any",
suppress_failures=False,
type="string",
type_handler_version="string",
vm_extension_name="string",
enable_automatic_upgrade=False)
const virtualMachineScaleSetVMExtensionResource = new azure_native.compute.VirtualMachineScaleSetVMExtension("virtualMachineScaleSetVMExtensionResource", {
instanceId: "string",
vmScaleSetName: "string",
resourceGroupName: "string",
provisionAfterExtensions: ["string"],
forceUpdateTag: "string",
location: "string",
protectedSettings: "any",
protectedSettingsFromKeyVault: {
secretUrl: "string",
sourceVault: {
id: "string",
},
},
autoUpgradeMinorVersion: false,
publisher: "string",
instanceView: {
name: "string",
statuses: [{
code: "string",
displayStatus: "string",
level: azure_native.compute.StatusLevelTypes.Info,
message: "string",
time: "string",
}],
substatuses: [{
code: "string",
displayStatus: "string",
level: azure_native.compute.StatusLevelTypes.Info,
message: "string",
time: "string",
}],
type: "string",
typeHandlerVersion: "string",
},
settings: "any",
suppressFailures: false,
type: "string",
typeHandlerVersion: "string",
vmExtensionName: "string",
enableAutomaticUpgrade: false,
});
type: azure-native:compute:VirtualMachineScaleSetVMExtension
properties:
autoUpgradeMinorVersion: false
enableAutomaticUpgrade: false
forceUpdateTag: string
instanceId: string
instanceView:
name: string
statuses:
- code: string
displayStatus: string
level: Info
message: string
time: string
substatuses:
- code: string
displayStatus: string
level: Info
message: string
time: string
type: string
typeHandlerVersion: string
location: string
protectedSettings: any
protectedSettingsFromKeyVault:
secretUrl: string
sourceVault:
id: string
provisionAfterExtensions:
- string
publisher: string
resourceGroupName: string
settings: any
suppressFailures: false
type: string
typeHandlerVersion: string
vmExtensionName: string
vmScaleSetName: string
VirtualMachineScaleSetVMExtension Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The VirtualMachineScaleSetVMExtension resource accepts the following input properties:
- Instance
Id string - The instance ID of the virtual machine.
- Resource
Group stringName - The name of the resource group.
- Vm
Scale stringSet Name - The name of the VM scale set.
- Auto
Upgrade boolMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- Enable
Automatic boolUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- Force
Update stringTag - How the extension handler should be forced to update even if the extension configuration has not changed.
- Instance
View Pulumi.Azure Native. Compute. Inputs. Virtual Machine Extension Instance View - The virtual machine extension instance view.
- Location string
- The location of the extension.
- Protected
Settings object - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- Protected
Settings Pulumi.From Key Vault Azure Native. Compute. Inputs. Key Vault Secret Reference - The extensions protected settings that are passed by reference, and consumed from key vault
- Provision
After List<string>Extensions - Collection of extension names after which this extension needs to be provisioned.
- Publisher string
- The name of the extension handler publisher.
- Settings object
- Json formatted public settings for the extension.
- Suppress
Failures bool - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- Vm
Extension stringName - The name of the virtual machine extension.
- Instance
Id string - The instance ID of the virtual machine.
- Resource
Group stringName - The name of the resource group.
- Vm
Scale stringSet Name - The name of the VM scale set.
- Auto
Upgrade boolMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- Enable
Automatic boolUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- Force
Update stringTag - How the extension handler should be forced to update even if the extension configuration has not changed.
- Instance
View VirtualMachine Extension Instance View Args - The virtual machine extension instance view.
- Location string
- The location of the extension.
- Protected
Settings interface{} - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- Protected
Settings KeyFrom Key Vault Vault Secret Reference Args - The extensions protected settings that are passed by reference, and consumed from key vault
- Provision
After []stringExtensions - Collection of extension names after which this extension needs to be provisioned.
- Publisher string
- The name of the extension handler publisher.
- Settings interface{}
- Json formatted public settings for the extension.
- Suppress
Failures bool - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- Vm
Extension stringName - The name of the virtual machine extension.
- instance
Id String - The instance ID of the virtual machine.
- resource
Group StringName - The name of the resource group.
- vm
Scale StringSet Name - The name of the VM scale set.
- auto
Upgrade BooleanMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable
Automatic BooleanUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force
Update StringTag - How the extension handler should be forced to update even if the extension configuration has not changed.
- instance
View VirtualMachine Extension Instance View - The virtual machine extension instance view.
- location String
- The location of the extension.
- protected
Settings Object - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- protected
Settings KeyFrom Key Vault Vault Secret Reference - The extensions protected settings that are passed by reference, and consumed from key vault
- provision
After List<String>Extensions - Collection of extension names after which this extension needs to be provisioned.
- publisher String
- The name of the extension handler publisher.
- settings Object
- Json formatted public settings for the extension.
- suppress
Failures Boolean - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
- vm
Extension StringName - The name of the virtual machine extension.
- instance
Id string - The instance ID of the virtual machine.
- resource
Group stringName - The name of the resource group.
- vm
Scale stringSet Name - The name of the VM scale set.
- auto
Upgrade booleanMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable
Automatic booleanUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force
Update stringTag - How the extension handler should be forced to update even if the extension configuration has not changed.
- instance
View VirtualMachine Extension Instance View - The virtual machine extension instance view.
- location string
- The location of the extension.
- protected
Settings any - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- protected
Settings KeyFrom Key Vault Vault Secret Reference - The extensions protected settings that are passed by reference, and consumed from key vault
- provision
After string[]Extensions - Collection of extension names after which this extension needs to be provisioned.
- publisher string
- The name of the extension handler publisher.
- settings any
- Json formatted public settings for the extension.
- suppress
Failures boolean - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler stringVersion - Specifies the version of the script handler.
- vm
Extension stringName - The name of the virtual machine extension.
- instance_
id str - The instance ID of the virtual machine.
- resource_
group_ strname - The name of the resource group.
- vm_
scale_ strset_ name - The name of the VM scale set.
- auto_
upgrade_ boolminor_ version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable_
automatic_ boolupgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force_
update_ strtag - How the extension handler should be forced to update even if the extension configuration has not changed.
- instance_
view VirtualMachine Extension Instance View Args - The virtual machine extension instance view.
- location str
- The location of the extension.
- protected_
settings Any - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- protected_
settings_ Keyfrom_ key_ vault Vault Secret Reference Args - The extensions protected settings that are passed by reference, and consumed from key vault
- provision_
after_ Sequence[str]extensions - Collection of extension names after which this extension needs to be provisioned.
- publisher str
- The name of the extension handler publisher.
- settings Any
- Json formatted public settings for the extension.
- suppress_
failures bool - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- type str
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type_
handler_ strversion - Specifies the version of the script handler.
- vm_
extension_ strname - The name of the virtual machine extension.
- instance
Id String - The instance ID of the virtual machine.
- resource
Group StringName - The name of the resource group.
- vm
Scale StringSet Name - The name of the VM scale set.
- auto
Upgrade BooleanMinor Version - Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.
- enable
Automatic BooleanUpgrade - Indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
- force
Update StringTag - How the extension handler should be forced to update even if the extension configuration has not changed.
- instance
View Property Map - The virtual machine extension instance view.
- location String
- The location of the extension.
- protected
Settings Any - The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.
- protected
Settings Property MapFrom Key Vault - The extensions protected settings that are passed by reference, and consumed from key vault
- provision
After List<String>Extensions - Collection of extension names after which this extension needs to be provisioned.
- publisher String
- The name of the extension handler publisher.
- settings Any
- Json formatted public settings for the extension.
- suppress
Failures Boolean - Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
- vm
Extension StringName - The name of the virtual machine extension.
Outputs
All input properties are implicitly available as output properties. Additionally, the VirtualMachineScaleSetVMExtension resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the extension.
- Provisioning
State string - The provisioning state, which only appears in the response.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the extension.
- Provisioning
State string - The provisioning state, which only appears in the response.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the extension.
- provisioning
State String - The provisioning state, which only appears in the response.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the extension.
- provisioning
State string - The provisioning state, which only appears in the response.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the extension.
- provisioning_
state str - The provisioning state, which only appears in the response.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the extension.
- provisioning
State String - The provisioning state, which only appears in the response.
Supporting Types
InstanceViewStatus, InstanceViewStatusArgs
- Code string
- The status code.
- Display
Status string - The short localizable label for the status.
- Level
Pulumi.
Azure Native. Compute. Status Level Types - The level code.
- Message string
- The detailed status message, including for alerts and error messages.
- Time string
- The time of the status.
- Code string
- The status code.
- Display
Status string - The short localizable label for the status.
- Level
Status
Level Types - The level code.
- Message string
- The detailed status message, including for alerts and error messages.
- Time string
- The time of the status.
- code String
- The status code.
- display
Status String - The short localizable label for the status.
- level
Status
Level Types - The level code.
- message String
- The detailed status message, including for alerts and error messages.
- time String
- The time of the status.
- code string
- The status code.
- display
Status string - The short localizable label for the status.
- level
Status
Level Types - The level code.
- message string
- The detailed status message, including for alerts and error messages.
- time string
- The time of the status.
- code str
- The status code.
- display_
status str - The short localizable label for the status.
- level
Status
Level Types - The level code.
- message str
- The detailed status message, including for alerts and error messages.
- time str
- The time of the status.
- code String
- The status code.
- display
Status String - The short localizable label for the status.
- level "Info" | "Warning" | "Error"
- The level code.
- message String
- The detailed status message, including for alerts and error messages.
- time String
- The time of the status.
InstanceViewStatusResponse, InstanceViewStatusResponseArgs
- Code string
- The status code.
- Display
Status string - The short localizable label for the status.
- Level string
- The level code.
- Message string
- The detailed status message, including for alerts and error messages.
- Time string
- The time of the status.
- Code string
- The status code.
- Display
Status string - The short localizable label for the status.
- Level string
- The level code.
- Message string
- The detailed status message, including for alerts and error messages.
- Time string
- The time of the status.
- code String
- The status code.
- display
Status String - The short localizable label for the status.
- level String
- The level code.
- message String
- The detailed status message, including for alerts and error messages.
- time String
- The time of the status.
- code string
- The status code.
- display
Status string - The short localizable label for the status.
- level string
- The level code.
- message string
- The detailed status message, including for alerts and error messages.
- time string
- The time of the status.
- code str
- The status code.
- display_
status str - The short localizable label for the status.
- level str
- The level code.
- message str
- The detailed status message, including for alerts and error messages.
- time str
- The time of the status.
- code String
- The status code.
- display
Status String - The short localizable label for the status.
- level String
- The level code.
- message String
- The detailed status message, including for alerts and error messages.
- time String
- The time of the status.
KeyVaultSecretReference, KeyVaultSecretReferenceArgs
- Secret
Url string - The URL referencing a secret in a Key Vault.
- Source
Vault Pulumi.Azure Native. Compute. Inputs. Sub Resource - The relative URL of the Key Vault containing the secret.
- Secret
Url string - The URL referencing a secret in a Key Vault.
- Source
Vault SubResource - The relative URL of the Key Vault containing the secret.
- secret
Url String - The URL referencing a secret in a Key Vault.
- source
Vault SubResource - The relative URL of the Key Vault containing the secret.
- secret
Url string - The URL referencing a secret in a Key Vault.
- source
Vault SubResource - The relative URL of the Key Vault containing the secret.
- secret_
url str - The URL referencing a secret in a Key Vault.
- source_
vault SubResource - The relative URL of the Key Vault containing the secret.
- secret
Url String - The URL referencing a secret in a Key Vault.
- source
Vault Property Map - The relative URL of the Key Vault containing the secret.
KeyVaultSecretReferenceResponse, KeyVaultSecretReferenceResponseArgs
- Secret
Url string - The URL referencing a secret in a Key Vault.
- Source
Vault Pulumi.Azure Native. Compute. Inputs. Sub Resource Response - The relative URL of the Key Vault containing the secret.
- Secret
Url string - The URL referencing a secret in a Key Vault.
- Source
Vault SubResource Response - The relative URL of the Key Vault containing the secret.
- secret
Url String - The URL referencing a secret in a Key Vault.
- source
Vault SubResource Response - The relative URL of the Key Vault containing the secret.
- secret
Url string - The URL referencing a secret in a Key Vault.
- source
Vault SubResource Response - The relative URL of the Key Vault containing the secret.
- secret_
url str - The URL referencing a secret in a Key Vault.
- source_
vault SubResource Response - The relative URL of the Key Vault containing the secret.
- secret
Url String - The URL referencing a secret in a Key Vault.
- source
Vault Property Map - The relative URL of the Key Vault containing the secret.
StatusLevelTypes, StatusLevelTypesArgs
- Info
- Info
- Warning
- Warning
- Error
- Error
- Status
Level Types Info - Info
- Status
Level Types Warning - Warning
- Status
Level Types Error - Error
- Info
- Info
- Warning
- Warning
- Error
- Error
- Info
- Info
- Warning
- Warning
- Error
- Error
- INFO
- Info
- WARNING
- Warning
- ERROR
- Error
- "Info"
- Info
- "Warning"
- Warning
- "Error"
- Error
SubResource, SubResourceArgs
- Id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- Id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id String
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id str
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id String
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
SubResourceResponse, SubResourceResponseArgs
- Id string
- Resource Id
- Id string
- Resource Id
- id String
- Resource Id
- id string
- Resource Id
- id str
- Resource Id
- id String
- Resource Id
VirtualMachineExtensionInstanceView, VirtualMachineExtensionInstanceViewArgs
- Name string
- The virtual machine extension name.
- Statuses
List<Pulumi.
Azure Native. Compute. Inputs. Instance View Status> - The resource status information.
- Substatuses
List<Pulumi.
Azure Native. Compute. Inputs. Instance View Status> - The resource status information.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- Name string
- The virtual machine extension name.
- Statuses
[]Instance
View Status - The resource status information.
- Substatuses
[]Instance
View Status - The resource status information.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- name String
- The virtual machine extension name.
- statuses
List<Instance
View Status> - The resource status information.
- substatuses
List<Instance
View Status> - The resource status information.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
- name string
- The virtual machine extension name.
- statuses
Instance
View Status[] - The resource status information.
- substatuses
Instance
View Status[] - The resource status information.
- type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler stringVersion - Specifies the version of the script handler.
- name str
- The virtual machine extension name.
- statuses
Sequence[Instance
View Status] - The resource status information.
- substatuses
Sequence[Instance
View Status] - The resource status information.
- type str
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type_
handler_ strversion - Specifies the version of the script handler.
- name String
- The virtual machine extension name.
- statuses List<Property Map>
- The resource status information.
- substatuses List<Property Map>
- The resource status information.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
VirtualMachineExtensionInstanceViewResponse, VirtualMachineExtensionInstanceViewResponseArgs
- Name string
- The virtual machine extension name.
- Statuses
List<Pulumi.
Azure Native. Compute. Inputs. Instance View Status Response> - The resource status information.
- Substatuses
List<Pulumi.
Azure Native. Compute. Inputs. Instance View Status Response> - The resource status information.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- Name string
- The virtual machine extension name.
- Statuses
[]Instance
View Status Response - The resource status information.
- Substatuses
[]Instance
View Status Response - The resource status information.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- name String
- The virtual machine extension name.
- statuses
List<Instance
View Status Response> - The resource status information.
- substatuses
List<Instance
View Status Response> - The resource status information.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
- name string
- The virtual machine extension name.
- statuses
Instance
View Status Response[] - The resource status information.
- substatuses
Instance
View Status Response[] - The resource status information.
- type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler stringVersion - Specifies the version of the script handler.
- name str
- The virtual machine extension name.
- statuses
Sequence[Instance
View Status Response] - The resource status information.
- substatuses
Sequence[Instance
View Status Response] - The resource status information.
- type str
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type_
handler_ strversion - Specifies the version of the script handler.
- name String
- The virtual machine extension name.
- statuses List<Property Map>
- The resource status information.
- substatuses List<Property Map>
- The resource status information.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:compute:VirtualMachineScaleSetVMExtension myVMExtension /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/extensions/{vmExtensionName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0