We recommend using Azure Native.
azure.systemcenter.VirtualMachineManagerServer
Explore with Pulumi AI
Manages a System Center Virtual Machine Manager Server.
Note: By request of the service team the provider no longer automatically registering the
Microsoft.ScVmm
Resource Provider for this resource. To register it you can runaz provider register --namespace Microsoft.ScVmm
.
Note: This resource depends on an existing
System Center Virtual Machine Manager Host Machine
,Arc Resource Bridge
andCustom Location
. Installing and configuring these dependencies is outside the scope of this document. See Virtual Machine Manager documentation and Install VMM for more details ofSystem Center Virtual Machine Manager Host Machine
. See What is Azure Arc resource bridge and Overview of Arc-enabled System Center Virtual Machine Manager for more details ofArc Resource Bridge/Appliance
. See Create and manage custom locations on Azure Arc-enabled Kubernetes for more details ofCustom Location
. If you encounter issues while configuring, we’d recommend opening a ticket with Microsoft Support.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const exampleVirtualMachineManagerServer = new azure.systemcenter.VirtualMachineManagerServer("example", {
name: "example-scvmmms",
resourceGroupName: example.name,
location: example.location,
customLocationId: "/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.ExtendedLocation/customLocations/customLocation1",
fqdn: "example.labtest",
username: "testUser",
password: "H@Sh1CoR3!",
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_virtual_machine_manager_server = azure.systemcenter.VirtualMachineManagerServer("example",
name="example-scvmmms",
resource_group_name=example.name,
location=example.location,
custom_location_id="/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.ExtendedLocation/customLocations/customLocation1",
fqdn="example.labtest",
username="testUser",
password="H@Sh1CoR3!")
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/systemcenter"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = systemcenter.NewVirtualMachineManagerServer(ctx, "example", &systemcenter.VirtualMachineManagerServerArgs{
Name: pulumi.String("example-scvmmms"),
ResourceGroupName: example.Name,
Location: example.Location,
CustomLocationId: pulumi.String("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.ExtendedLocation/customLocations/customLocation1"),
Fqdn: pulumi.String("example.labtest"),
Username: pulumi.String("testUser"),
Password: pulumi.String("H@Sh1CoR3!"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var exampleVirtualMachineManagerServer = new Azure.SystemCenter.VirtualMachineManagerServer("example", new()
{
Name = "example-scvmmms",
ResourceGroupName = example.Name,
Location = example.Location,
CustomLocationId = "/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.ExtendedLocation/customLocations/customLocation1",
Fqdn = "example.labtest",
Username = "testUser",
Password = "H@Sh1CoR3!",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.systemcenter.VirtualMachineManagerServer;
import com.pulumi.azure.systemcenter.VirtualMachineManagerServerArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleVirtualMachineManagerServer = new VirtualMachineManagerServer("exampleVirtualMachineManagerServer", VirtualMachineManagerServerArgs.builder()
.name("example-scvmmms")
.resourceGroupName(example.name())
.location(example.location())
.customLocationId("/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.ExtendedLocation/customLocations/customLocation1")
.fqdn("example.labtest")
.username("testUser")
.password("H@Sh1CoR3!")
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleVirtualMachineManagerServer:
type: azure:systemcenter:VirtualMachineManagerServer
name: example
properties:
name: example-scvmmms
resourceGroupName: ${example.name}
location: ${example.location}
customLocationId: /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.ExtendedLocation/customLocations/customLocation1
fqdn: example.labtest
username: testUser
password: H@Sh1CoR3!
Create VirtualMachineManagerServer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VirtualMachineManagerServer(name: string, args: VirtualMachineManagerServerArgs, opts?: CustomResourceOptions);
@overload
def VirtualMachineManagerServer(resource_name: str,
args: VirtualMachineManagerServerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VirtualMachineManagerServer(resource_name: str,
opts: Optional[ResourceOptions] = None,
custom_location_id: Optional[str] = None,
fqdn: Optional[str] = None,
password: Optional[str] = None,
resource_group_name: Optional[str] = None,
username: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
port: Optional[int] = None,
tags: Optional[Mapping[str, str]] = None)
func NewVirtualMachineManagerServer(ctx *Context, name string, args VirtualMachineManagerServerArgs, opts ...ResourceOption) (*VirtualMachineManagerServer, error)
public VirtualMachineManagerServer(string name, VirtualMachineManagerServerArgs args, CustomResourceOptions? opts = null)
public VirtualMachineManagerServer(String name, VirtualMachineManagerServerArgs args)
public VirtualMachineManagerServer(String name, VirtualMachineManagerServerArgs args, CustomResourceOptions options)
type: azure:systemcenter:VirtualMachineManagerServer
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 VirtualMachineManagerServerArgs
- 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 VirtualMachineManagerServerArgs
- 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 VirtualMachineManagerServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VirtualMachineManagerServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VirtualMachineManagerServerArgs
- 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 virtualMachineManagerServerResource = new Azure.SystemCenter.VirtualMachineManagerServer("virtualMachineManagerServerResource", new()
{
CustomLocationId = "string",
Fqdn = "string",
Password = "string",
ResourceGroupName = "string",
Username = "string",
Location = "string",
Name = "string",
Port = 0,
Tags =
{
{ "string", "string" },
},
});
example, err := systemcenter.NewVirtualMachineManagerServer(ctx, "virtualMachineManagerServerResource", &systemcenter.VirtualMachineManagerServerArgs{
CustomLocationId: pulumi.String("string"),
Fqdn: pulumi.String("string"),
Password: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Username: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Port: pulumi.Int(0),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var virtualMachineManagerServerResource = new VirtualMachineManagerServer("virtualMachineManagerServerResource", VirtualMachineManagerServerArgs.builder()
.customLocationId("string")
.fqdn("string")
.password("string")
.resourceGroupName("string")
.username("string")
.location("string")
.name("string")
.port(0)
.tags(Map.of("string", "string"))
.build());
virtual_machine_manager_server_resource = azure.systemcenter.VirtualMachineManagerServer("virtualMachineManagerServerResource",
custom_location_id="string",
fqdn="string",
password="string",
resource_group_name="string",
username="string",
location="string",
name="string",
port=0,
tags={
"string": "string",
})
const virtualMachineManagerServerResource = new azure.systemcenter.VirtualMachineManagerServer("virtualMachineManagerServerResource", {
customLocationId: "string",
fqdn: "string",
password: "string",
resourceGroupName: "string",
username: "string",
location: "string",
name: "string",
port: 0,
tags: {
string: "string",
},
});
type: azure:systemcenter:VirtualMachineManagerServer
properties:
customLocationId: string
fqdn: string
location: string
name: string
password: string
port: 0
resourceGroupName: string
tags:
string: string
username: string
VirtualMachineManagerServer 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 VirtualMachineManagerServer resource accepts the following input properties:
- Custom
Location stringId - The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Fqdn string
- The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Password string
- The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
- Username string
- The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Location string
- The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
- Name string
- The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Port int
- The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between
1
and65535
. Changing this forces a new resource to be created. - Dictionary<string, string>
- A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
- Custom
Location stringId - The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Fqdn string
- The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Password string
- The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
- Username string
- The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Location string
- The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
- Name string
- The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Port int
- The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between
1
and65535
. Changing this forces a new resource to be created. - map[string]string
- A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
- custom
Location StringId - The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- fqdn String
- The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- password String
- The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- resource
Group StringName - The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
- username String
- The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- location String
- The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
- name String
- The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- port Integer
- The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between
1
and65535
. Changing this forces a new resource to be created. - Map<String,String>
- A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
- custom
Location stringId - The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- fqdn string
- The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- password string
- The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- resource
Group stringName - The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
- username string
- The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- location string
- The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
- name string
- The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- port number
- The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between
1
and65535
. Changing this forces a new resource to be created. - {[key: string]: string}
- A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
- custom_
location_ strid - The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- fqdn str
- The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- password str
- The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- resource_
group_ strname - The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
- username str
- The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- location str
- The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
- name str
- The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- port int
- The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between
1
and65535
. Changing this forces a new resource to be created. - Mapping[str, str]
- A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
- custom
Location StringId - The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- fqdn String
- The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- password String
- The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- resource
Group StringName - The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
- username String
- The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- location String
- The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
- name String
- The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- port Number
- The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between
1
and65535
. Changing this forces a new resource to be created. - Map<String>
- A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
Outputs
All input properties are implicitly available as output properties. Additionally, the VirtualMachineManagerServer resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing VirtualMachineManagerServer Resource
Get an existing VirtualMachineManagerServer resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: VirtualMachineManagerServerState, opts?: CustomResourceOptions): VirtualMachineManagerServer
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
custom_location_id: Optional[str] = None,
fqdn: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
password: Optional[str] = None,
port: Optional[int] = None,
resource_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
username: Optional[str] = None) -> VirtualMachineManagerServer
func GetVirtualMachineManagerServer(ctx *Context, name string, id IDInput, state *VirtualMachineManagerServerState, opts ...ResourceOption) (*VirtualMachineManagerServer, error)
public static VirtualMachineManagerServer Get(string name, Input<string> id, VirtualMachineManagerServerState? state, CustomResourceOptions? opts = null)
public static VirtualMachineManagerServer get(String name, Output<String> id, VirtualMachineManagerServerState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Custom
Location stringId - The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Fqdn string
- The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Location string
- The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
- Name string
- The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Password string
- The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Port int
- The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between
1
and65535
. Changing this forces a new resource to be created. - Resource
Group stringName - The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
- Username string
- The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Custom
Location stringId - The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Fqdn string
- The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Location string
- The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
- Name string
- The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Password string
- The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- Port int
- The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between
1
and65535
. Changing this forces a new resource to be created. - Resource
Group stringName - The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
- Username string
- The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- custom
Location StringId - The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- fqdn String
- The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- location String
- The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
- name String
- The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- password String
- The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- port Integer
- The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between
1
and65535
. Changing this forces a new resource to be created. - resource
Group StringName - The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
- username String
- The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- custom
Location stringId - The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- fqdn string
- The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- location string
- The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
- name string
- The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- password string
- The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- port number
- The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between
1
and65535
. Changing this forces a new resource to be created. - resource
Group stringName - The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
- username string
- The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- custom_
location_ strid - The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- fqdn str
- The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- location str
- The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
- name str
- The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- password str
- The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- port int
- The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between
1
and65535
. Changing this forces a new resource to be created. - resource_
group_ strname - The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
- username str
- The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- custom
Location StringId - The ID of the Custom Location for the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- fqdn String
- The FQDN of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- location String
- The Azure Region where the System Center Virtual Machine Manager Server should exist. Changing this forces a new resource to be created.
- name String
- The name of the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- password String
- The password that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
- port Number
- The port on which the System Center Virtual Machine Manager Server is listening. Possible values are between
1
and65535
. Changing this forces a new resource to be created. - resource
Group StringName - The name of the Resource Group where the System Center Virtual Machine Manager should exist. Changing this forces a new resource to be created.
- Map<String>
- A mapping of tags which should be assigned to the System Center Virtual Machine Manager Server.
- username String
- The username that is used to connect to the System Center Virtual Machine Manager Server. Changing this forces a new resource to be created.
Import
System Center Virtual Machine Manager Servers can be imported using the resource id
, e.g.
$ pulumi import azure:systemcenter/virtualMachineManagerServer:VirtualMachineManagerServer example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.ScVmm/vmmServers/vmmServer1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.