import * as pulumi from "@pulumi/pulumi"; /** * Manages the DNS servers associated with a virtual network. * * > **Note:** Terraform currently provides both a standalone virtual network DNS Servers resource, and allows for DNS servers to be defined in-line within the Virtual Network resource. * At this time you cannot use a Virtual Network with in-line DNS servers in conjunction with any Virtual Network DNS Servers resources. Doing so will cause a conflict of Virtual Network DNS Servers configurations and will overwrite virtual networks DNS servers. * * ## Example Usage * * ```typescript * 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, * subnets: [{ * name: "subnet1", * addressPrefix: "10.0.1.0/24", * }], * }); * const exampleVirtualNetworkDnsServers = new azure.network.VirtualNetworkDnsServers("example", { * virtualNetworkId: exampleVirtualNetwork.id, * dnsServers: [ * "10.7.7.2", * "10.7.7.7", * "10.7.7.1", * ], * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 * * ## Import * * Virtual Network DNS Servers can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:network/virtualNetworkDnsServers:VirtualNetworkDnsServers exampleNetwork /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/virtualNetworks/myvnet1/dnsServers/default * ``` */ export declare class VirtualNetworkDnsServers extends pulumi.CustomResource { /** * Get an existing VirtualNetworkDnsServers resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: VirtualNetworkDnsServersState, opts?: pulumi.CustomResourceOptions): VirtualNetworkDnsServers; /** * Returns true if the given object is an instance of VirtualNetworkDnsServers. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is VirtualNetworkDnsServers; /** * List of IP addresses of DNS servers */ readonly dnsServers: pulumi.Output; /** * The ID of the Virtual Network that should be linked to the DNS Zone. Changing this forces a new resource to be created. */ readonly virtualNetworkId: pulumi.Output; /** * Create a VirtualNetworkDnsServers resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: VirtualNetworkDnsServersArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering VirtualNetworkDnsServers resources. */ export interface VirtualNetworkDnsServersState { /** * List of IP addresses of DNS servers */ dnsServers?: pulumi.Input[]>; /** * The ID of the Virtual Network that should be linked to the DNS Zone. Changing this forces a new resource to be created. */ virtualNetworkId?: pulumi.Input; } /** * The set of arguments for constructing a VirtualNetworkDnsServers resource. */ export interface VirtualNetworkDnsServersArgs { /** * List of IP addresses of DNS servers */ dnsServers?: pulumi.Input[]>; /** * The ID of the Virtual Network that should be linked to the DNS Zone. Changing this forces a new resource to be created. */ virtualNetworkId: pulumi.Input; }