azure-native.azurearcdata.ActiveDirectoryConnector
Explore with Pulumi AI
Active directory connector resource
Uses Azure REST API version 2023-01-15-preview. In version 1.x of the Azure Native provider, it used API version 2022-03-01-preview.
Other available API versions: 2024-01-01, 2024-05-01-preview, 2025-03-01-preview.
Example Usage
Create or update an Active Directory connector instance.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var activeDirectoryConnector = new AzureNative.AzureArcData.ActiveDirectoryConnector("activeDirectoryConnector", new()
    {
        ActiveDirectoryConnectorName = "testADConnector",
        DataControllerName = "testdataController",
        Properties = new AzureNative.AzureArcData.Inputs.ActiveDirectoryConnectorPropertiesArgs
        {
            Spec = new AzureNative.AzureArcData.Inputs.ActiveDirectoryConnectorSpecArgs
            {
                ActiveDirectory = new AzureNative.AzureArcData.Inputs.ActiveDirectoryConnectorDomainDetailsArgs
                {
                    DomainControllers = new AzureNative.AzureArcData.Inputs.ActiveDirectoryDomainControllersArgs
                    {
                        PrimaryDomainController = new AzureNative.AzureArcData.Inputs.ActiveDirectoryDomainControllerArgs
                        {
                            Hostname = "dc1.contoso.local",
                        },
                        SecondaryDomainControllers = new[]
                        {
                            new AzureNative.AzureArcData.Inputs.ActiveDirectoryDomainControllerArgs
                            {
                                Hostname = "dc2.contoso.local",
                            },
                            new AzureNative.AzureArcData.Inputs.ActiveDirectoryDomainControllerArgs
                            {
                                Hostname = "dc3.contoso.local",
                            },
                        },
                    },
                    Realm = "CONTOSO.LOCAL",
                    ServiceAccountProvisioning = AzureNative.AzureArcData.AccountProvisioningMode.Manual,
                },
                Dns = new AzureNative.AzureArcData.Inputs.ActiveDirectoryConnectorDNSDetailsArgs
                {
                    NameserverIPAddresses = new[]
                    {
                        "11.11.111.111",
                        "22.22.222.222",
                    },
                    PreferK8sDnsForPtrLookups = false,
                    Replicas = 1,
                },
            },
        },
        ResourceGroupName = "testrg",
    });
});
package main
import (
	azurearcdata "github.com/pulumi/pulumi-azure-native-sdk/azurearcdata/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := azurearcdata.NewActiveDirectoryConnector(ctx, "activeDirectoryConnector", &azurearcdata.ActiveDirectoryConnectorArgs{
			ActiveDirectoryConnectorName: pulumi.String("testADConnector"),
			DataControllerName:           pulumi.String("testdataController"),
			Properties: &azurearcdata.ActiveDirectoryConnectorPropertiesArgs{
				Spec: &azurearcdata.ActiveDirectoryConnectorSpecArgs{
					ActiveDirectory: &azurearcdata.ActiveDirectoryConnectorDomainDetailsArgs{
						DomainControllers: &azurearcdata.ActiveDirectoryDomainControllersArgs{
							PrimaryDomainController: &azurearcdata.ActiveDirectoryDomainControllerArgs{
								Hostname: pulumi.String("dc1.contoso.local"),
							},
							SecondaryDomainControllers: azurearcdata.ActiveDirectoryDomainControllerArray{
								&azurearcdata.ActiveDirectoryDomainControllerArgs{
									Hostname: pulumi.String("dc2.contoso.local"),
								},
								&azurearcdata.ActiveDirectoryDomainControllerArgs{
									Hostname: pulumi.String("dc3.contoso.local"),
								},
							},
						},
						Realm:                      pulumi.String("CONTOSO.LOCAL"),
						ServiceAccountProvisioning: pulumi.String(azurearcdata.AccountProvisioningModeManual),
					},
					Dns: &azurearcdata.ActiveDirectoryConnectorDNSDetailsArgs{
						NameserverIPAddresses: pulumi.StringArray{
							pulumi.String("11.11.111.111"),
							pulumi.String("22.22.222.222"),
						},
						PreferK8sDnsForPtrLookups: pulumi.Bool(false),
						Replicas:                  pulumi.Float64(1),
					},
				},
			},
			ResourceGroupName: pulumi.String("testrg"),
		})
		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.azurearcdata.ActiveDirectoryConnector;
import com.pulumi.azurenative.azurearcdata.ActiveDirectoryConnectorArgs;
import com.pulumi.azurenative.azurearcdata.inputs.ActiveDirectoryConnectorPropertiesArgs;
import com.pulumi.azurenative.azurearcdata.inputs.ActiveDirectoryConnectorSpecArgs;
import com.pulumi.azurenative.azurearcdata.inputs.ActiveDirectoryConnectorDomainDetailsArgs;
import com.pulumi.azurenative.azurearcdata.inputs.ActiveDirectoryDomainControllersArgs;
import com.pulumi.azurenative.azurearcdata.inputs.ActiveDirectoryDomainControllerArgs;
import com.pulumi.azurenative.azurearcdata.inputs.ActiveDirectoryConnectorDNSDetailsArgs;
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 activeDirectoryConnector = new ActiveDirectoryConnector("activeDirectoryConnector", ActiveDirectoryConnectorArgs.builder()
            .activeDirectoryConnectorName("testADConnector")
            .dataControllerName("testdataController")
            .properties(ActiveDirectoryConnectorPropertiesArgs.builder()
                .spec(ActiveDirectoryConnectorSpecArgs.builder()
                    .activeDirectory(ActiveDirectoryConnectorDomainDetailsArgs.builder()
                        .domainControllers(ActiveDirectoryDomainControllersArgs.builder()
                            .primaryDomainController(ActiveDirectoryDomainControllerArgs.builder()
                                .hostname("dc1.contoso.local")
                                .build())
                            .secondaryDomainControllers(                            
                                ActiveDirectoryDomainControllerArgs.builder()
                                    .hostname("dc2.contoso.local")
                                    .build(),
                                ActiveDirectoryDomainControllerArgs.builder()
                                    .hostname("dc3.contoso.local")
                                    .build())
                            .build())
                        .realm("CONTOSO.LOCAL")
                        .serviceAccountProvisioning("manual")
                        .build())
                    .dns(ActiveDirectoryConnectorDNSDetailsArgs.builder()
                        .nameserverIPAddresses(                        
                            "11.11.111.111",
                            "22.22.222.222")
                        .preferK8sDnsForPtrLookups(false)
                        .replicas(1)
                        .build())
                    .build())
                .build())
            .resourceGroupName("testrg")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const activeDirectoryConnector = new azure_native.azurearcdata.ActiveDirectoryConnector("activeDirectoryConnector", {
    activeDirectoryConnectorName: "testADConnector",
    dataControllerName: "testdataController",
    properties: {
        spec: {
            activeDirectory: {
                domainControllers: {
                    primaryDomainController: {
                        hostname: "dc1.contoso.local",
                    },
                    secondaryDomainControllers: [
                        {
                            hostname: "dc2.contoso.local",
                        },
                        {
                            hostname: "dc3.contoso.local",
                        },
                    ],
                },
                realm: "CONTOSO.LOCAL",
                serviceAccountProvisioning: azure_native.azurearcdata.AccountProvisioningMode.Manual,
            },
            dns: {
                nameserverIPAddresses: [
                    "11.11.111.111",
                    "22.22.222.222",
                ],
                preferK8sDnsForPtrLookups: false,
                replicas: 1,
            },
        },
    },
    resourceGroupName: "testrg",
});
import pulumi
import pulumi_azure_native as azure_native
active_directory_connector = azure_native.azurearcdata.ActiveDirectoryConnector("activeDirectoryConnector",
    active_directory_connector_name="testADConnector",
    data_controller_name="testdataController",
    properties={
        "spec": {
            "active_directory": {
                "domain_controllers": {
                    "primary_domain_controller": {
                        "hostname": "dc1.contoso.local",
                    },
                    "secondary_domain_controllers": [
                        {
                            "hostname": "dc2.contoso.local",
                        },
                        {
                            "hostname": "dc3.contoso.local",
                        },
                    ],
                },
                "realm": "CONTOSO.LOCAL",
                "service_account_provisioning": azure_native.azurearcdata.AccountProvisioningMode.MANUAL,
            },
            "dns": {
                "nameserver_ip_addresses": [
                    "11.11.111.111",
                    "22.22.222.222",
                ],
                "prefer_k8s_dns_for_ptr_lookups": False,
                "replicas": 1,
            },
        },
    },
    resource_group_name="testrg")
resources:
  activeDirectoryConnector:
    type: azure-native:azurearcdata:ActiveDirectoryConnector
    properties:
      activeDirectoryConnectorName: testADConnector
      dataControllerName: testdataController
      properties:
        spec:
          activeDirectory:
            domainControllers:
              primaryDomainController:
                hostname: dc1.contoso.local
              secondaryDomainControllers:
                - hostname: dc2.contoso.local
                - hostname: dc3.contoso.local
            realm: CONTOSO.LOCAL
            serviceAccountProvisioning: manual
          dns:
            nameserverIPAddresses:
              - 11.11.111.111
              - 22.22.222.222
            preferK8sDnsForPtrLookups: false
            replicas: 1
      resourceGroupName: testrg
Create ActiveDirectoryConnector Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ActiveDirectoryConnector(name: string, args: ActiveDirectoryConnectorArgs, opts?: CustomResourceOptions);@overload
def ActiveDirectoryConnector(resource_name: str,
                             args: ActiveDirectoryConnectorArgs,
                             opts: Optional[ResourceOptions] = None)
@overload
def ActiveDirectoryConnector(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             data_controller_name: Optional[str] = None,
                             properties: Optional[ActiveDirectoryConnectorPropertiesArgs] = None,
                             resource_group_name: Optional[str] = None,
                             active_directory_connector_name: Optional[str] = None)func NewActiveDirectoryConnector(ctx *Context, name string, args ActiveDirectoryConnectorArgs, opts ...ResourceOption) (*ActiveDirectoryConnector, error)public ActiveDirectoryConnector(string name, ActiveDirectoryConnectorArgs args, CustomResourceOptions? opts = null)
public ActiveDirectoryConnector(String name, ActiveDirectoryConnectorArgs args)
public ActiveDirectoryConnector(String name, ActiveDirectoryConnectorArgs args, CustomResourceOptions options)
type: azure-native:azurearcdata:ActiveDirectoryConnector
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 ActiveDirectoryConnectorArgs
- 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 ActiveDirectoryConnectorArgs
- 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 ActiveDirectoryConnectorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ActiveDirectoryConnectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ActiveDirectoryConnectorArgs
- 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 activeDirectoryConnectorResource = new AzureNative.AzureArcData.ActiveDirectoryConnector("activeDirectoryConnectorResource", new()
{
    DataControllerName = "string",
    Properties = new AzureNative.AzureArcData.Inputs.ActiveDirectoryConnectorPropertiesArgs
    {
        Spec = new AzureNative.AzureArcData.Inputs.ActiveDirectoryConnectorSpecArgs
        {
            ActiveDirectory = new AzureNative.AzureArcData.Inputs.ActiveDirectoryConnectorDomainDetailsArgs
            {
                Realm = "string",
                DomainControllers = new AzureNative.AzureArcData.Inputs.ActiveDirectoryDomainControllersArgs
                {
                    PrimaryDomainController = new AzureNative.AzureArcData.Inputs.ActiveDirectoryDomainControllerArgs
                    {
                        Hostname = "string",
                    },
                    SecondaryDomainControllers = new[]
                    {
                        new AzureNative.AzureArcData.Inputs.ActiveDirectoryDomainControllerArgs
                        {
                            Hostname = "string",
                        },
                    },
                },
                NetbiosDomainName = "string",
                OuDistinguishedName = "string",
                ServiceAccountProvisioning = "string",
            },
            Dns = new AzureNative.AzureArcData.Inputs.ActiveDirectoryConnectorDNSDetailsArgs
            {
                NameserverIPAddresses = new[]
                {
                    "string",
                },
                DomainName = "string",
                PreferK8sDnsForPtrLookups = false,
                Replicas = 0,
            },
        },
        DomainServiceAccountLoginInformation = new AzureNative.AzureArcData.Inputs.BasicLoginInformationArgs
        {
            Password = "string",
            Username = "string",
        },
        Status = new AzureNative.AzureArcData.Inputs.ActiveDirectoryConnectorStatusArgs
        {
            LastUpdateTime = "string",
            ObservedGeneration = 0,
            State = "string",
        },
    },
    ResourceGroupName = "string",
    ActiveDirectoryConnectorName = "string",
});
example, err := azurearcdata.NewActiveDirectoryConnector(ctx, "activeDirectoryConnectorResource", &azurearcdata.ActiveDirectoryConnectorArgs{
	DataControllerName: pulumi.String("string"),
	Properties: &azurearcdata.ActiveDirectoryConnectorPropertiesArgs{
		Spec: &azurearcdata.ActiveDirectoryConnectorSpecArgs{
			ActiveDirectory: &azurearcdata.ActiveDirectoryConnectorDomainDetailsArgs{
				Realm: pulumi.String("string"),
				DomainControllers: &azurearcdata.ActiveDirectoryDomainControllersArgs{
					PrimaryDomainController: &azurearcdata.ActiveDirectoryDomainControllerArgs{
						Hostname: pulumi.String("string"),
					},
					SecondaryDomainControllers: azurearcdata.ActiveDirectoryDomainControllerArray{
						&azurearcdata.ActiveDirectoryDomainControllerArgs{
							Hostname: pulumi.String("string"),
						},
					},
				},
				NetbiosDomainName:          pulumi.String("string"),
				OuDistinguishedName:        pulumi.String("string"),
				ServiceAccountProvisioning: pulumi.String("string"),
			},
			Dns: &azurearcdata.ActiveDirectoryConnectorDNSDetailsArgs{
				NameserverIPAddresses: pulumi.StringArray{
					pulumi.String("string"),
				},
				DomainName:                pulumi.String("string"),
				PreferK8sDnsForPtrLookups: pulumi.Bool(false),
				Replicas:                  pulumi.Float64(0),
			},
		},
		DomainServiceAccountLoginInformation: &azurearcdata.BasicLoginInformationArgs{
			Password: pulumi.String("string"),
			Username: pulumi.String("string"),
		},
		Status: &azurearcdata.ActiveDirectoryConnectorStatusArgs{
			LastUpdateTime:     pulumi.String("string"),
			ObservedGeneration: pulumi.Float64(0),
			State:              pulumi.String("string"),
		},
	},
	ResourceGroupName:            pulumi.String("string"),
	ActiveDirectoryConnectorName: pulumi.String("string"),
})
var activeDirectoryConnectorResource = new ActiveDirectoryConnector("activeDirectoryConnectorResource", ActiveDirectoryConnectorArgs.builder()
    .dataControllerName("string")
    .properties(ActiveDirectoryConnectorPropertiesArgs.builder()
        .spec(ActiveDirectoryConnectorSpecArgs.builder()
            .activeDirectory(ActiveDirectoryConnectorDomainDetailsArgs.builder()
                .realm("string")
                .domainControllers(ActiveDirectoryDomainControllersArgs.builder()
                    .primaryDomainController(ActiveDirectoryDomainControllerArgs.builder()
                        .hostname("string")
                        .build())
                    .secondaryDomainControllers(ActiveDirectoryDomainControllerArgs.builder()
                        .hostname("string")
                        .build())
                    .build())
                .netbiosDomainName("string")
                .ouDistinguishedName("string")
                .serviceAccountProvisioning("string")
                .build())
            .dns(ActiveDirectoryConnectorDNSDetailsArgs.builder()
                .nameserverIPAddresses("string")
                .domainName("string")
                .preferK8sDnsForPtrLookups(false)
                .replicas(0)
                .build())
            .build())
        .domainServiceAccountLoginInformation(BasicLoginInformationArgs.builder()
            .password("string")
            .username("string")
            .build())
        .status(ActiveDirectoryConnectorStatusArgs.builder()
            .lastUpdateTime("string")
            .observedGeneration(0)
            .state("string")
            .build())
        .build())
    .resourceGroupName("string")
    .activeDirectoryConnectorName("string")
    .build());
active_directory_connector_resource = azure_native.azurearcdata.ActiveDirectoryConnector("activeDirectoryConnectorResource",
    data_controller_name="string",
    properties={
        "spec": {
            "active_directory": {
                "realm": "string",
                "domain_controllers": {
                    "primary_domain_controller": {
                        "hostname": "string",
                    },
                    "secondary_domain_controllers": [{
                        "hostname": "string",
                    }],
                },
                "netbios_domain_name": "string",
                "ou_distinguished_name": "string",
                "service_account_provisioning": "string",
            },
            "dns": {
                "nameserver_ip_addresses": ["string"],
                "domain_name": "string",
                "prefer_k8s_dns_for_ptr_lookups": False,
                "replicas": 0,
            },
        },
        "domain_service_account_login_information": {
            "password": "string",
            "username": "string",
        },
        "status": {
            "last_update_time": "string",
            "observed_generation": 0,
            "state": "string",
        },
    },
    resource_group_name="string",
    active_directory_connector_name="string")
const activeDirectoryConnectorResource = new azure_native.azurearcdata.ActiveDirectoryConnector("activeDirectoryConnectorResource", {
    dataControllerName: "string",
    properties: {
        spec: {
            activeDirectory: {
                realm: "string",
                domainControllers: {
                    primaryDomainController: {
                        hostname: "string",
                    },
                    secondaryDomainControllers: [{
                        hostname: "string",
                    }],
                },
                netbiosDomainName: "string",
                ouDistinguishedName: "string",
                serviceAccountProvisioning: "string",
            },
            dns: {
                nameserverIPAddresses: ["string"],
                domainName: "string",
                preferK8sDnsForPtrLookups: false,
                replicas: 0,
            },
        },
        domainServiceAccountLoginInformation: {
            password: "string",
            username: "string",
        },
        status: {
            lastUpdateTime: "string",
            observedGeneration: 0,
            state: "string",
        },
    },
    resourceGroupName: "string",
    activeDirectoryConnectorName: "string",
});
type: azure-native:azurearcdata:ActiveDirectoryConnector
properties:
    activeDirectoryConnectorName: string
    dataControllerName: string
    properties:
        domainServiceAccountLoginInformation:
            password: string
            username: string
        spec:
            activeDirectory:
                domainControllers:
                    primaryDomainController:
                        hostname: string
                    secondaryDomainControllers:
                        - hostname: string
                netbiosDomainName: string
                ouDistinguishedName: string
                realm: string
                serviceAccountProvisioning: string
            dns:
                domainName: string
                nameserverIPAddresses:
                    - string
                preferK8sDnsForPtrLookups: false
                replicas: 0
        status:
            lastUpdateTime: string
            observedGeneration: 0
            state: string
    resourceGroupName: string
ActiveDirectoryConnector Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ActiveDirectoryConnector resource accepts the following input properties:
- DataController stringName 
- The name of the data controller
- Properties
Pulumi.Azure Native. Azure Arc Data. Inputs. Active Directory Connector Properties 
- null
- ResourceGroup stringName 
- The name of the Azure resource group
- ActiveDirectory stringConnector Name 
- The name of the Active Directory connector instance
- DataController stringName 
- The name of the data controller
- Properties
ActiveDirectory Connector Properties Args 
- null
- ResourceGroup stringName 
- The name of the Azure resource group
- ActiveDirectory stringConnector Name 
- The name of the Active Directory connector instance
- dataController StringName 
- The name of the data controller
- properties
ActiveDirectory Connector Properties 
- null
- resourceGroup StringName 
- The name of the Azure resource group
- activeDirectory StringConnector Name 
- The name of the Active Directory connector instance
- dataController stringName 
- The name of the data controller
- properties
ActiveDirectory Connector Properties 
- null
- resourceGroup stringName 
- The name of the Azure resource group
- activeDirectory stringConnector Name 
- The name of the Active Directory connector instance
- data_controller_ strname 
- The name of the data controller
- properties
ActiveDirectory Connector Properties Args 
- null
- resource_group_ strname 
- The name of the Azure resource group
- active_directory_ strconnector_ name 
- The name of the Active Directory connector instance
- dataController StringName 
- The name of the data controller
- properties Property Map
- null
- resourceGroup StringName 
- The name of the Azure resource group
- activeDirectory StringConnector Name 
- The name of the Active Directory connector instance
Outputs
All input properties are implicitly available as output properties. Additionally, the ActiveDirectoryConnector resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData Pulumi.Azure Native. Azure Arc Data. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AccountProvisioningMode, AccountProvisioningModeArgs      
- Automatic
- automatic
- Manual
- manual
- AccountProvisioning Mode Automatic 
- automatic
- AccountProvisioning Mode Manual 
- manual
- Automatic
- automatic
- Manual
- manual
- Automatic
- automatic
- Manual
- manual
- AUTOMATIC
- automatic
- MANUAL
- manual
- "automatic"
- automatic
- "manual"
- manual
ActiveDirectoryConnectorDNSDetails, ActiveDirectoryConnectorDNSDetailsArgs        
- NameserverIPAddresses List<string>
- List of Active Directory DNS server IP addresses.
- DomainName string
- DNS domain name for which DNS lookups should be forwarded to the Active Directory DNS servers.
- PreferK8s boolDns For Ptr Lookups 
- Flag indicating whether to prefer Kubernetes DNS server response over AD DNS server response for IP address lookups.
- Replicas double
- Replica count for DNS proxy service. Default value is 1.
- NameserverIPAddresses []string
- List of Active Directory DNS server IP addresses.
- DomainName string
- DNS domain name for which DNS lookups should be forwarded to the Active Directory DNS servers.
- PreferK8s boolDns For Ptr Lookups 
- Flag indicating whether to prefer Kubernetes DNS server response over AD DNS server response for IP address lookups.
- Replicas float64
- Replica count for DNS proxy service. Default value is 1.
- nameserverIPAddresses List<String>
- List of Active Directory DNS server IP addresses.
- domainName String
- DNS domain name for which DNS lookups should be forwarded to the Active Directory DNS servers.
- preferK8s BooleanDns For Ptr Lookups 
- Flag indicating whether to prefer Kubernetes DNS server response over AD DNS server response for IP address lookups.
- replicas Double
- Replica count for DNS proxy service. Default value is 1.
- nameserverIPAddresses string[]
- List of Active Directory DNS server IP addresses.
- domainName string
- DNS domain name for which DNS lookups should be forwarded to the Active Directory DNS servers.
- preferK8s booleanDns For Ptr Lookups 
- Flag indicating whether to prefer Kubernetes DNS server response over AD DNS server response for IP address lookups.
- replicas number
- Replica count for DNS proxy service. Default value is 1.
- nameserver_ip_ Sequence[str]addresses 
- List of Active Directory DNS server IP addresses.
- domain_name str
- DNS domain name for which DNS lookups should be forwarded to the Active Directory DNS servers.
- prefer_k8s_ booldns_ for_ ptr_ lookups 
- Flag indicating whether to prefer Kubernetes DNS server response over AD DNS server response for IP address lookups.
- replicas float
- Replica count for DNS proxy service. Default value is 1.
- nameserverIPAddresses List<String>
- List of Active Directory DNS server IP addresses.
- domainName String
- DNS domain name for which DNS lookups should be forwarded to the Active Directory DNS servers.
- preferK8s BooleanDns For Ptr Lookups 
- Flag indicating whether to prefer Kubernetes DNS server response over AD DNS server response for IP address lookups.
- replicas Number
- Replica count for DNS proxy service. Default value is 1.
ActiveDirectoryConnectorDNSDetailsResponse, ActiveDirectoryConnectorDNSDetailsResponseArgs          
- NameserverIPAddresses List<string>
- List of Active Directory DNS server IP addresses.
- DomainName string
- DNS domain name for which DNS lookups should be forwarded to the Active Directory DNS servers.
- PreferK8s boolDns For Ptr Lookups 
- Flag indicating whether to prefer Kubernetes DNS server response over AD DNS server response for IP address lookups.
- Replicas double
- Replica count for DNS proxy service. Default value is 1.
- NameserverIPAddresses []string
- List of Active Directory DNS server IP addresses.
- DomainName string
- DNS domain name for which DNS lookups should be forwarded to the Active Directory DNS servers.
- PreferK8s boolDns For Ptr Lookups 
- Flag indicating whether to prefer Kubernetes DNS server response over AD DNS server response for IP address lookups.
- Replicas float64
- Replica count for DNS proxy service. Default value is 1.
- nameserverIPAddresses List<String>
- List of Active Directory DNS server IP addresses.
- domainName String
- DNS domain name for which DNS lookups should be forwarded to the Active Directory DNS servers.
- preferK8s BooleanDns For Ptr Lookups 
- Flag indicating whether to prefer Kubernetes DNS server response over AD DNS server response for IP address lookups.
- replicas Double
- Replica count for DNS proxy service. Default value is 1.
- nameserverIPAddresses string[]
- List of Active Directory DNS server IP addresses.
- domainName string
- DNS domain name for which DNS lookups should be forwarded to the Active Directory DNS servers.
- preferK8s booleanDns For Ptr Lookups 
- Flag indicating whether to prefer Kubernetes DNS server response over AD DNS server response for IP address lookups.
- replicas number
- Replica count for DNS proxy service. Default value is 1.
- nameserver_ip_ Sequence[str]addresses 
- List of Active Directory DNS server IP addresses.
- domain_name str
- DNS domain name for which DNS lookups should be forwarded to the Active Directory DNS servers.
- prefer_k8s_ booldns_ for_ ptr_ lookups 
- Flag indicating whether to prefer Kubernetes DNS server response over AD DNS server response for IP address lookups.
- replicas float
- Replica count for DNS proxy service. Default value is 1.
- nameserverIPAddresses List<String>
- List of Active Directory DNS server IP addresses.
- domainName String
- DNS domain name for which DNS lookups should be forwarded to the Active Directory DNS servers.
- preferK8s BooleanDns For Ptr Lookups 
- Flag indicating whether to prefer Kubernetes DNS server response over AD DNS server response for IP address lookups.
- replicas Number
- Replica count for DNS proxy service. Default value is 1.
ActiveDirectoryConnectorDomainDetails, ActiveDirectoryConnectorDomainDetailsArgs          
- Realm string
- Name (uppercase) of the Active Directory domain that this AD connector will be associated with.
- DomainControllers Pulumi.Azure Native. Azure Arc Data. Inputs. Active Directory Domain Controllers 
- null
- NetbiosDomain stringName 
- NETBIOS name of the Active Directory domain.
- OuDistinguished stringName 
- The distinguished name of the Active Directory Organizational Unit.
- ServiceAccount string | Pulumi.Provisioning Azure Native. Azure Arc Data. Account Provisioning Mode 
- The service account provisioning mode for this Active Directory connector.
- Realm string
- Name (uppercase) of the Active Directory domain that this AD connector will be associated with.
- DomainControllers ActiveDirectory Domain Controllers 
- null
- NetbiosDomain stringName 
- NETBIOS name of the Active Directory domain.
- OuDistinguished stringName 
- The distinguished name of the Active Directory Organizational Unit.
- ServiceAccount string | AccountProvisioning Provisioning Mode 
- The service account provisioning mode for this Active Directory connector.
- realm String
- Name (uppercase) of the Active Directory domain that this AD connector will be associated with.
- domainControllers ActiveDirectory Domain Controllers 
- null
- netbiosDomain StringName 
- NETBIOS name of the Active Directory domain.
- ouDistinguished StringName 
- The distinguished name of the Active Directory Organizational Unit.
- serviceAccount String | AccountProvisioning Provisioning Mode 
- The service account provisioning mode for this Active Directory connector.
- realm string
- Name (uppercase) of the Active Directory domain that this AD connector will be associated with.
- domainControllers ActiveDirectory Domain Controllers 
- null
- netbiosDomain stringName 
- NETBIOS name of the Active Directory domain.
- ouDistinguished stringName 
- The distinguished name of the Active Directory Organizational Unit.
- serviceAccount string | AccountProvisioning Provisioning Mode 
- The service account provisioning mode for this Active Directory connector.
- realm str
- Name (uppercase) of the Active Directory domain that this AD connector will be associated with.
- domain_controllers ActiveDirectory Domain Controllers 
- null
- netbios_domain_ strname 
- NETBIOS name of the Active Directory domain.
- ou_distinguished_ strname 
- The distinguished name of the Active Directory Organizational Unit.
- service_account_ str | Accountprovisioning Provisioning Mode 
- The service account provisioning mode for this Active Directory connector.
- realm String
- Name (uppercase) of the Active Directory domain that this AD connector will be associated with.
- domainControllers Property Map
- null
- netbiosDomain StringName 
- NETBIOS name of the Active Directory domain.
- ouDistinguished StringName 
- The distinguished name of the Active Directory Organizational Unit.
- serviceAccount String | "automatic" | "manual"Provisioning 
- The service account provisioning mode for this Active Directory connector.
ActiveDirectoryConnectorDomainDetailsResponse, ActiveDirectoryConnectorDomainDetailsResponseArgs            
- Realm string
- Name (uppercase) of the Active Directory domain that this AD connector will be associated with.
- DomainControllers Pulumi.Azure Native. Azure Arc Data. Inputs. Active Directory Domain Controllers Response 
- null
- NetbiosDomain stringName 
- NETBIOS name of the Active Directory domain.
- OuDistinguished stringName 
- The distinguished name of the Active Directory Organizational Unit.
- ServiceAccount stringProvisioning 
- The service account provisioning mode for this Active Directory connector.
- Realm string
- Name (uppercase) of the Active Directory domain that this AD connector will be associated with.
- DomainControllers ActiveDirectory Domain Controllers Response 
- null
- NetbiosDomain stringName 
- NETBIOS name of the Active Directory domain.
- OuDistinguished stringName 
- The distinguished name of the Active Directory Organizational Unit.
- ServiceAccount stringProvisioning 
- The service account provisioning mode for this Active Directory connector.
- realm String
- Name (uppercase) of the Active Directory domain that this AD connector will be associated with.
- domainControllers ActiveDirectory Domain Controllers Response 
- null
- netbiosDomain StringName 
- NETBIOS name of the Active Directory domain.
- ouDistinguished StringName 
- The distinguished name of the Active Directory Organizational Unit.
- serviceAccount StringProvisioning 
- The service account provisioning mode for this Active Directory connector.
- realm string
- Name (uppercase) of the Active Directory domain that this AD connector will be associated with.
- domainControllers ActiveDirectory Domain Controllers Response 
- null
- netbiosDomain stringName 
- NETBIOS name of the Active Directory domain.
- ouDistinguished stringName 
- The distinguished name of the Active Directory Organizational Unit.
- serviceAccount stringProvisioning 
- The service account provisioning mode for this Active Directory connector.
- realm str
- Name (uppercase) of the Active Directory domain that this AD connector will be associated with.
- domain_controllers ActiveDirectory Domain Controllers Response 
- null
- netbios_domain_ strname 
- NETBIOS name of the Active Directory domain.
- ou_distinguished_ strname 
- The distinguished name of the Active Directory Organizational Unit.
- service_account_ strprovisioning 
- The service account provisioning mode for this Active Directory connector.
- realm String
- Name (uppercase) of the Active Directory domain that this AD connector will be associated with.
- domainControllers Property Map
- null
- netbiosDomain StringName 
- NETBIOS name of the Active Directory domain.
- ouDistinguished StringName 
- The distinguished name of the Active Directory Organizational Unit.
- serviceAccount StringProvisioning 
- The service account provisioning mode for this Active Directory connector.
ActiveDirectoryConnectorProperties, ActiveDirectoryConnectorPropertiesArgs        
- Spec
Pulumi.Azure Native. Azure Arc Data. Inputs. Active Directory Connector Spec 
- null
- DomainService Pulumi.Account Login Information Azure Native. Azure Arc Data. Inputs. Basic Login Information 
- Username and password for domain service account authentication.
- Status
Pulumi.Azure Native. Azure Arc Data. Inputs. Active Directory Connector Status 
- null
- Spec
ActiveDirectory Connector Spec 
- null
- DomainService BasicAccount Login Information Login Information 
- Username and password for domain service account authentication.
- Status
ActiveDirectory Connector Status 
- null
- spec
ActiveDirectory Connector Spec 
- null
- domainService BasicAccount Login Information Login Information 
- Username and password for domain service account authentication.
- status
ActiveDirectory Connector Status 
- null
- spec
ActiveDirectory Connector Spec 
- null
- domainService BasicAccount Login Information Login Information 
- Username and password for domain service account authentication.
- status
ActiveDirectory Connector Status 
- null
- spec
ActiveDirectory Connector Spec 
- null
- domain_service_ Basicaccount_ login_ information Login Information 
- Username and password for domain service account authentication.
- status
ActiveDirectory Connector Status 
- null
- spec Property Map
- null
- domainService Property MapAccount Login Information 
- Username and password for domain service account authentication.
- status Property Map
- null
ActiveDirectoryConnectorPropertiesResponse, ActiveDirectoryConnectorPropertiesResponseArgs          
- ProvisioningState string
- The provisioning state of the Active Directory connector resource.
- Spec
Pulumi.Azure Native. Azure Arc Data. Inputs. Active Directory Connector Spec Response 
- null
- DomainService Pulumi.Account Login Information Azure Native. Azure Arc Data. Inputs. Basic Login Information Response 
- Username and password for domain service account authentication.
- Status
Pulumi.Azure Native. Azure Arc Data. Inputs. Active Directory Connector Status Response 
- null
- ProvisioningState string
- The provisioning state of the Active Directory connector resource.
- Spec
ActiveDirectory Connector Spec Response 
- null
- DomainService BasicAccount Login Information Login Information Response 
- Username and password for domain service account authentication.
- Status
ActiveDirectory Connector Status Response 
- null
- provisioningState String
- The provisioning state of the Active Directory connector resource.
- spec
ActiveDirectory Connector Spec Response 
- null
- domainService BasicAccount Login Information Login Information Response 
- Username and password for domain service account authentication.
- status
ActiveDirectory Connector Status Response 
- null
- provisioningState string
- The provisioning state of the Active Directory connector resource.
- spec
ActiveDirectory Connector Spec Response 
- null
- domainService BasicAccount Login Information Login Information Response 
- Username and password for domain service account authentication.
- status
ActiveDirectory Connector Status Response 
- null
- provisioning_state str
- The provisioning state of the Active Directory connector resource.
- spec
ActiveDirectory Connector Spec Response 
- null
- domain_service_ Basicaccount_ login_ information Login Information Response 
- Username and password for domain service account authentication.
- status
ActiveDirectory Connector Status Response 
- null
- provisioningState String
- The provisioning state of the Active Directory connector resource.
- spec Property Map
- null
- domainService Property MapAccount Login Information 
- Username and password for domain service account authentication.
- status Property Map
- null
ActiveDirectoryConnectorSpec, ActiveDirectoryConnectorSpecArgs        
ActiveDirectoryConnectorSpecResponse, ActiveDirectoryConnectorSpecResponseArgs          
ActiveDirectoryConnectorStatus, ActiveDirectoryConnectorStatusArgs        
- LastUpdate stringTime 
- The time that the custom resource was last updated.
- ObservedGeneration double
- The version of the replicaSet associated with the AD connector custom resource.
- State string
- The state of the AD connector custom resource.
- LastUpdate stringTime 
- The time that the custom resource was last updated.
- ObservedGeneration float64
- The version of the replicaSet associated with the AD connector custom resource.
- State string
- The state of the AD connector custom resource.
- lastUpdate StringTime 
- The time that the custom resource was last updated.
- observedGeneration Double
- The version of the replicaSet associated with the AD connector custom resource.
- state String
- The state of the AD connector custom resource.
- lastUpdate stringTime 
- The time that the custom resource was last updated.
- observedGeneration number
- The version of the replicaSet associated with the AD connector custom resource.
- state string
- The state of the AD connector custom resource.
- last_update_ strtime 
- The time that the custom resource was last updated.
- observed_generation float
- The version of the replicaSet associated with the AD connector custom resource.
- state str
- The state of the AD connector custom resource.
- lastUpdate StringTime 
- The time that the custom resource was last updated.
- observedGeneration Number
- The version of the replicaSet associated with the AD connector custom resource.
- state String
- The state of the AD connector custom resource.
ActiveDirectoryConnectorStatusResponse, ActiveDirectoryConnectorStatusResponseArgs          
- LastUpdate stringTime 
- The time that the custom resource was last updated.
- ObservedGeneration double
- The version of the replicaSet associated with the AD connector custom resource.
- State string
- The state of the AD connector custom resource.
- LastUpdate stringTime 
- The time that the custom resource was last updated.
- ObservedGeneration float64
- The version of the replicaSet associated with the AD connector custom resource.
- State string
- The state of the AD connector custom resource.
- lastUpdate StringTime 
- The time that the custom resource was last updated.
- observedGeneration Double
- The version of the replicaSet associated with the AD connector custom resource.
- state String
- The state of the AD connector custom resource.
- lastUpdate stringTime 
- The time that the custom resource was last updated.
- observedGeneration number
- The version of the replicaSet associated with the AD connector custom resource.
- state string
- The state of the AD connector custom resource.
- last_update_ strtime 
- The time that the custom resource was last updated.
- observed_generation float
- The version of the replicaSet associated with the AD connector custom resource.
- state str
- The state of the AD connector custom resource.
- lastUpdate StringTime 
- The time that the custom resource was last updated.
- observedGeneration Number
- The version of the replicaSet associated with the AD connector custom resource.
- state String
- The state of the AD connector custom resource.
ActiveDirectoryDomainController, ActiveDirectoryDomainControllerArgs        
- Hostname string
- Fully-qualified domain name of a domain controller in the AD domain.
- Hostname string
- Fully-qualified domain name of a domain controller in the AD domain.
- hostname String
- Fully-qualified domain name of a domain controller in the AD domain.
- hostname string
- Fully-qualified domain name of a domain controller in the AD domain.
- hostname str
- Fully-qualified domain name of a domain controller in the AD domain.
- hostname String
- Fully-qualified domain name of a domain controller in the AD domain.
ActiveDirectoryDomainControllerResponse, ActiveDirectoryDomainControllerResponseArgs          
- Hostname string
- Fully-qualified domain name of a domain controller in the AD domain.
- Hostname string
- Fully-qualified domain name of a domain controller in the AD domain.
- hostname String
- Fully-qualified domain name of a domain controller in the AD domain.
- hostname string
- Fully-qualified domain name of a domain controller in the AD domain.
- hostname str
- Fully-qualified domain name of a domain controller in the AD domain.
- hostname String
- Fully-qualified domain name of a domain controller in the AD domain.
ActiveDirectoryDomainControllers, ActiveDirectoryDomainControllersArgs        
- PrimaryDomain Pulumi.Controller Azure Native. Azure Arc Data. Inputs. Active Directory Domain Controller 
- Information about the Primary Domain Controller (PDC) in the AD domain.
- SecondaryDomain List<Pulumi.Controllers Azure Native. Azure Arc Data. Inputs. Active Directory Domain Controller> 
- null
- PrimaryDomain ActiveController Directory Domain Controller 
- Information about the Primary Domain Controller (PDC) in the AD domain.
- SecondaryDomain []ActiveControllers Directory Domain Controller 
- null
- primaryDomain ActiveController Directory Domain Controller 
- Information about the Primary Domain Controller (PDC) in the AD domain.
- secondaryDomain List<ActiveControllers Directory Domain Controller> 
- null
- primaryDomain ActiveController Directory Domain Controller 
- Information about the Primary Domain Controller (PDC) in the AD domain.
- secondaryDomain ActiveControllers Directory Domain Controller[] 
- null
- primary_domain_ Activecontroller Directory Domain Controller 
- Information about the Primary Domain Controller (PDC) in the AD domain.
- secondary_domain_ Sequence[Activecontrollers Directory Domain Controller] 
- null
- primaryDomain Property MapController 
- Information about the Primary Domain Controller (PDC) in the AD domain.
- secondaryDomain List<Property Map>Controllers 
- null
ActiveDirectoryDomainControllersResponse, ActiveDirectoryDomainControllersResponseArgs          
- PrimaryDomain Pulumi.Controller Azure Native. Azure Arc Data. Inputs. Active Directory Domain Controller Response 
- Information about the Primary Domain Controller (PDC) in the AD domain.
- SecondaryDomain List<Pulumi.Controllers Azure Native. Azure Arc Data. Inputs. Active Directory Domain Controller Response> 
- null
- PrimaryDomain ActiveController Directory Domain Controller Response 
- Information about the Primary Domain Controller (PDC) in the AD domain.
- SecondaryDomain []ActiveControllers Directory Domain Controller Response 
- null
- primaryDomain ActiveController Directory Domain Controller Response 
- Information about the Primary Domain Controller (PDC) in the AD domain.
- secondaryDomain List<ActiveControllers Directory Domain Controller Response> 
- null
- primaryDomain ActiveController Directory Domain Controller Response 
- Information about the Primary Domain Controller (PDC) in the AD domain.
- secondaryDomain ActiveControllers Directory Domain Controller Response[] 
- null
- primary_domain_ Activecontroller Directory Domain Controller Response 
- Information about the Primary Domain Controller (PDC) in the AD domain.
- secondary_domain_ Sequence[Activecontrollers Directory Domain Controller Response] 
- null
- primaryDomain Property MapController 
- Information about the Primary Domain Controller (PDC) in the AD domain.
- secondaryDomain List<Property Map>Controllers 
- null
BasicLoginInformation, BasicLoginInformationArgs      
BasicLoginInformationResponse, BasicLoginInformationResponseArgs        
- Username string
- Login username.
- Username string
- Login username.
- username String
- Login username.
- username string
- Login username.
- username str
- Login username.
- username String
- Login username.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:azurearcdata:ActiveDirectoryConnector testADConnector /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureArcData/dataControllers/{dataControllerName}/activeDirectoryConnectors/{activeDirectoryConnectorName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0