We recommend using Azure Native.
azure.devcenter.NetworkConnection
Explore with Pulumi AI
Manages a Dev Center Network Connection.
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 exampleVirtualNetwork = new azure.network.VirtualNetwork("example", {
name: "example-vnet",
addressSpaces: ["10.0.0.0/16"],
location: example.location,
resourceGroupName: example.name,
});
const exampleSubnet = new azure.network.Subnet("example", {
name: "internal",
resourceGroupName: example.name,
virtualNetworkName: exampleVirtualNetwork.name,
addressPrefixes: ["10.0.2.0/24"],
});
const exampleNetworkConnection = new azure.devcenter.NetworkConnection("example", {
name: "example-dcnc",
resourceGroupName: example.name,
location: example.location,
domainJoinType: "AzureADJoin",
subnetId: exampleSubnet.id,
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_virtual_network = azure.network.VirtualNetwork("example",
name="example-vnet",
address_spaces=["10.0.0.0/16"],
location=example.location,
resource_group_name=example.name)
example_subnet = azure.network.Subnet("example",
name="internal",
resource_group_name=example.name,
virtual_network_name=example_virtual_network.name,
address_prefixes=["10.0.2.0/24"])
example_network_connection = azure.devcenter.NetworkConnection("example",
name="example-dcnc",
resource_group_name=example.name,
location=example.location,
domain_join_type="AzureADJoin",
subnet_id=example_subnet.id)
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/devcenter"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/network"
"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
}
exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "example", &network.VirtualNetworkArgs{
Name: pulumi.String("example-vnet"),
AddressSpaces: pulumi.StringArray{
pulumi.String("10.0.0.0/16"),
},
Location: example.Location,
ResourceGroupName: example.Name,
})
if err != nil {
return err
}
exampleSubnet, err := network.NewSubnet(ctx, "example", &network.SubnetArgs{
Name: pulumi.String("internal"),
ResourceGroupName: example.Name,
VirtualNetworkName: exampleVirtualNetwork.Name,
AddressPrefixes: pulumi.StringArray{
pulumi.String("10.0.2.0/24"),
},
})
if err != nil {
return err
}
_, err = devcenter.NewNetworkConnection(ctx, "example", &devcenter.NetworkConnectionArgs{
Name: pulumi.String("example-dcnc"),
ResourceGroupName: example.Name,
Location: example.Location,
DomainJoinType: pulumi.String("AzureADJoin"),
SubnetId: exampleSubnet.ID(),
})
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 exampleVirtualNetwork = new Azure.Network.VirtualNetwork("example", new()
{
Name = "example-vnet",
AddressSpaces = new[]
{
"10.0.0.0/16",
},
Location = example.Location,
ResourceGroupName = example.Name,
});
var exampleSubnet = new Azure.Network.Subnet("example", new()
{
Name = "internal",
ResourceGroupName = example.Name,
VirtualNetworkName = exampleVirtualNetwork.Name,
AddressPrefixes = new[]
{
"10.0.2.0/24",
},
});
var exampleNetworkConnection = new Azure.DevCenter.NetworkConnection("example", new()
{
Name = "example-dcnc",
ResourceGroupName = example.Name,
Location = example.Location,
DomainJoinType = "AzureADJoin",
SubnetId = exampleSubnet.Id,
});
});
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.network.VirtualNetwork;
import com.pulumi.azure.network.VirtualNetworkArgs;
import com.pulumi.azure.network.Subnet;
import com.pulumi.azure.network.SubnetArgs;
import com.pulumi.azure.devcenter.NetworkConnection;
import com.pulumi.azure.devcenter.NetworkConnectionArgs;
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 exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()
.name("example-vnet")
.addressSpaces("10.0.0.0/16")
.location(example.location())
.resourceGroupName(example.name())
.build());
var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()
.name("internal")
.resourceGroupName(example.name())
.virtualNetworkName(exampleVirtualNetwork.name())
.addressPrefixes("10.0.2.0/24")
.build());
var exampleNetworkConnection = new NetworkConnection("exampleNetworkConnection", NetworkConnectionArgs.builder()
.name("example-dcnc")
.resourceGroupName(example.name())
.location(example.location())
.domainJoinType("AzureADJoin")
.subnetId(exampleSubnet.id())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleVirtualNetwork:
type: azure:network:VirtualNetwork
name: example
properties:
name: example-vnet
addressSpaces:
- 10.0.0.0/16
location: ${example.location}
resourceGroupName: ${example.name}
exampleSubnet:
type: azure:network:Subnet
name: example
properties:
name: internal
resourceGroupName: ${example.name}
virtualNetworkName: ${exampleVirtualNetwork.name}
addressPrefixes:
- 10.0.2.0/24
exampleNetworkConnection:
type: azure:devcenter:NetworkConnection
name: example
properties:
name: example-dcnc
resourceGroupName: ${example.name}
location: ${example.location}
domainJoinType: AzureADJoin
subnetId: ${exampleSubnet.id}
Create NetworkConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkConnection(name: string, args: NetworkConnectionArgs, opts?: CustomResourceOptions);
@overload
def NetworkConnection(resource_name: str,
args: NetworkConnectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NetworkConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
domain_join_type: Optional[str] = None,
resource_group_name: Optional[str] = None,
subnet_id: Optional[str] = None,
domain_name: Optional[str] = None,
domain_password: Optional[str] = None,
domain_username: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
organization_unit: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewNetworkConnection(ctx *Context, name string, args NetworkConnectionArgs, opts ...ResourceOption) (*NetworkConnection, error)
public NetworkConnection(string name, NetworkConnectionArgs args, CustomResourceOptions? opts = null)
public NetworkConnection(String name, NetworkConnectionArgs args)
public NetworkConnection(String name, NetworkConnectionArgs args, CustomResourceOptions options)
type: azure:devcenter:NetworkConnection
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 NetworkConnectionArgs
- 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 NetworkConnectionArgs
- 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 NetworkConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkConnectionArgs
- 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 networkConnectionResource = new Azure.DevCenter.NetworkConnection("networkConnectionResource", new()
{
DomainJoinType = "string",
ResourceGroupName = "string",
SubnetId = "string",
DomainName = "string",
DomainPassword = "string",
DomainUsername = "string",
Location = "string",
Name = "string",
OrganizationUnit = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := devcenter.NewNetworkConnection(ctx, "networkConnectionResource", &devcenter.NetworkConnectionArgs{
DomainJoinType: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
SubnetId: pulumi.String("string"),
DomainName: pulumi.String("string"),
DomainPassword: pulumi.String("string"),
DomainUsername: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
OrganizationUnit: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var networkConnectionResource = new NetworkConnection("networkConnectionResource", NetworkConnectionArgs.builder()
.domainJoinType("string")
.resourceGroupName("string")
.subnetId("string")
.domainName("string")
.domainPassword("string")
.domainUsername("string")
.location("string")
.name("string")
.organizationUnit("string")
.tags(Map.of("string", "string"))
.build());
network_connection_resource = azure.devcenter.NetworkConnection("networkConnectionResource",
domain_join_type="string",
resource_group_name="string",
subnet_id="string",
domain_name="string",
domain_password="string",
domain_username="string",
location="string",
name="string",
organization_unit="string",
tags={
"string": "string",
})
const networkConnectionResource = new azure.devcenter.NetworkConnection("networkConnectionResource", {
domainJoinType: "string",
resourceGroupName: "string",
subnetId: "string",
domainName: "string",
domainPassword: "string",
domainUsername: "string",
location: "string",
name: "string",
organizationUnit: "string",
tags: {
string: "string",
},
});
type: azure:devcenter:NetworkConnection
properties:
domainJoinType: string
domainName: string
domainPassword: string
domainUsername: string
location: string
name: string
organizationUnit: string
resourceGroupName: string
subnetId: string
tags:
string: string
NetworkConnection 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 NetworkConnection resource accepts the following input properties:
- Domain
Join stringType - The Azure Active Directory Join type. Possible values are
AzureADJoin
andHybridAzureADJoin
. Changing this forces a new resource to be created. - Resource
Group stringName - Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- Subnet
Id string - The ID of the Subnet that is used to attach Virtual Machines.
- Domain
Name string - The name of the Azure Active Directory domain.
- Domain
Password string - The password for the account used to join domain.
- Domain
Username string - The username of the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
- Location string
- The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- Name string
- Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
- Organization
Unit string - The Azure Active Directory domain Organization Unit (OU).
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Dev Center Network Connection.
- Domain
Join stringType - The Azure Active Directory Join type. Possible values are
AzureADJoin
andHybridAzureADJoin
. Changing this forces a new resource to be created. - Resource
Group stringName - Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- Subnet
Id string - The ID of the Subnet that is used to attach Virtual Machines.
- Domain
Name string - The name of the Azure Active Directory domain.
- Domain
Password string - The password for the account used to join domain.
- Domain
Username string - The username of the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
- Location string
- The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- Name string
- Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
- Organization
Unit string - The Azure Active Directory domain Organization Unit (OU).
- map[string]string
- A mapping of tags which should be assigned to the Dev Center Network Connection.
- domain
Join StringType - The Azure Active Directory Join type. Possible values are
AzureADJoin
andHybridAzureADJoin
. Changing this forces a new resource to be created. - resource
Group StringName - Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- subnet
Id String - The ID of the Subnet that is used to attach Virtual Machines.
- domain
Name String - The name of the Azure Active Directory domain.
- domain
Password String - The password for the account used to join domain.
- domain
Username String - The username of the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
- location String
- The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- name String
- Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
- organization
Unit String - The Azure Active Directory domain Organization Unit (OU).
- Map<String,String>
- A mapping of tags which should be assigned to the Dev Center Network Connection.
- domain
Join stringType - The Azure Active Directory Join type. Possible values are
AzureADJoin
andHybridAzureADJoin
. Changing this forces a new resource to be created. - resource
Group stringName - Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- subnet
Id string - The ID of the Subnet that is used to attach Virtual Machines.
- domain
Name string - The name of the Azure Active Directory domain.
- domain
Password string - The password for the account used to join domain.
- domain
Username string - The username of the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
- location string
- The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- name string
- Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
- organization
Unit string - The Azure Active Directory domain Organization Unit (OU).
- {[key: string]: string}
- A mapping of tags which should be assigned to the Dev Center Network Connection.
- domain_
join_ strtype - The Azure Active Directory Join type. Possible values are
AzureADJoin
andHybridAzureADJoin
. Changing this forces a new resource to be created. - resource_
group_ strname - Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- subnet_
id str - The ID of the Subnet that is used to attach Virtual Machines.
- domain_
name str - The name of the Azure Active Directory domain.
- domain_
password str - The password for the account used to join domain.
- domain_
username str - The username of the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
- location str
- The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- name str
- Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
- organization_
unit str - The Azure Active Directory domain Organization Unit (OU).
- Mapping[str, str]
- A mapping of tags which should be assigned to the Dev Center Network Connection.
- domain
Join StringType - The Azure Active Directory Join type. Possible values are
AzureADJoin
andHybridAzureADJoin
. Changing this forces a new resource to be created. - resource
Group StringName - Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- subnet
Id String - The ID of the Subnet that is used to attach Virtual Machines.
- domain
Name String - The name of the Azure Active Directory domain.
- domain
Password String - The password for the account used to join domain.
- domain
Username String - The username of the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
- location String
- The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- name String
- Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
- organization
Unit String - The Azure Active Directory domain Organization Unit (OU).
- Map<String>
- A mapping of tags which should be assigned to the Dev Center Network Connection.
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkConnection 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 NetworkConnection Resource
Get an existing NetworkConnection 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?: NetworkConnectionState, opts?: CustomResourceOptions): NetworkConnection
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
domain_join_type: Optional[str] = None,
domain_name: Optional[str] = None,
domain_password: Optional[str] = None,
domain_username: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
organization_unit: Optional[str] = None,
resource_group_name: Optional[str] = None,
subnet_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> NetworkConnection
func GetNetworkConnection(ctx *Context, name string, id IDInput, state *NetworkConnectionState, opts ...ResourceOption) (*NetworkConnection, error)
public static NetworkConnection Get(string name, Input<string> id, NetworkConnectionState? state, CustomResourceOptions? opts = null)
public static NetworkConnection get(String name, Output<String> id, NetworkConnectionState 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.
- Domain
Join stringType - The Azure Active Directory Join type. Possible values are
AzureADJoin
andHybridAzureADJoin
. Changing this forces a new resource to be created. - Domain
Name string - The name of the Azure Active Directory domain.
- Domain
Password string - The password for the account used to join domain.
- Domain
Username string - The username of the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
- Location string
- The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- Name string
- Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
- Organization
Unit string - The Azure Active Directory domain Organization Unit (OU).
- Resource
Group stringName - Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- Subnet
Id string - The ID of the Subnet that is used to attach Virtual Machines.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Dev Center Network Connection.
- Domain
Join stringType - The Azure Active Directory Join type. Possible values are
AzureADJoin
andHybridAzureADJoin
. Changing this forces a new resource to be created. - Domain
Name string - The name of the Azure Active Directory domain.
- Domain
Password string - The password for the account used to join domain.
- Domain
Username string - The username of the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
- Location string
- The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- Name string
- Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
- Organization
Unit string - The Azure Active Directory domain Organization Unit (OU).
- Resource
Group stringName - Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- Subnet
Id string - The ID of the Subnet that is used to attach Virtual Machines.
- map[string]string
- A mapping of tags which should be assigned to the Dev Center Network Connection.
- domain
Join StringType - The Azure Active Directory Join type. Possible values are
AzureADJoin
andHybridAzureADJoin
. Changing this forces a new resource to be created. - domain
Name String - The name of the Azure Active Directory domain.
- domain
Password String - The password for the account used to join domain.
- domain
Username String - The username of the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
- location String
- The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- name String
- Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
- organization
Unit String - The Azure Active Directory domain Organization Unit (OU).
- resource
Group StringName - Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- subnet
Id String - The ID of the Subnet that is used to attach Virtual Machines.
- Map<String,String>
- A mapping of tags which should be assigned to the Dev Center Network Connection.
- domain
Join stringType - The Azure Active Directory Join type. Possible values are
AzureADJoin
andHybridAzureADJoin
. Changing this forces a new resource to be created. - domain
Name string - The name of the Azure Active Directory domain.
- domain
Password string - The password for the account used to join domain.
- domain
Username string - The username of the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
- location string
- The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- name string
- Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
- organization
Unit string - The Azure Active Directory domain Organization Unit (OU).
- resource
Group stringName - Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- subnet
Id string - The ID of the Subnet that is used to attach Virtual Machines.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Dev Center Network Connection.
- domain_
join_ strtype - The Azure Active Directory Join type. Possible values are
AzureADJoin
andHybridAzureADJoin
. Changing this forces a new resource to be created. - domain_
name str - The name of the Azure Active Directory domain.
- domain_
password str - The password for the account used to join domain.
- domain_
username str - The username of the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
- location str
- The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- name str
- Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
- organization_
unit str - The Azure Active Directory domain Organization Unit (OU).
- resource_
group_ strname - Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- subnet_
id str - The ID of the Subnet that is used to attach Virtual Machines.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Dev Center Network Connection.
- domain
Join StringType - The Azure Active Directory Join type. Possible values are
AzureADJoin
andHybridAzureADJoin
. Changing this forces a new resource to be created. - domain
Name String - The name of the Azure Active Directory domain.
- domain
Password String - The password for the account used to join domain.
- domain
Username String - The username of the Azure Active Directory account (user or service account) that has permissions to create computer objects in Active Directory.
- location String
- The Azure Region where the Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- name String
- Specifies the name of this Dev Center Network Connection. Changing this forces a new resource to be created.
- organization
Unit String - The Azure Active Directory domain Organization Unit (OU).
- resource
Group StringName - Specifies the name of the Resource Group within which this Dev Center Network Connection should exist. Changing this forces a new resource to be created.
- subnet
Id String - The ID of the Subnet that is used to attach Virtual Machines.
- Map<String>
- A mapping of tags which should be assigned to the Dev Center Network Connection.
Import
An existing Dev Center Network Connection can be imported into Pulumi using the resource id
, e.g.
$ pulumi import azure:devcenter/networkConnection:NetworkConnection example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DevCenter/networkConnections/networkConnection1
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.