DomainArgs

data class DomainArgs(val admin: Output<String>? = null, val authorizedNetworks: Output<List<String>>? = null, val domainName: Output<String>? = null, val labels: Output<Map<String, String>>? = null, val locations: Output<List<String>>? = null, val project: Output<String>? = null, val reservedIpRange: Output<String>? = null) : ConvertibleToJava<DomainArgs>

Creates a Microsoft AD domain To get more information about Domain, see:

Example Usage

Active Directory Domain Basic

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.activedirectory.Domain;
import com.pulumi.gcp.activedirectory.DomainArgs;
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 ad_domain = new Domain("ad-domain", DomainArgs.builder()
.domainName("tfgen.org.com")
.locations("us-central1")
.reservedIpRange("192.168.255.0/24")
.build());
}
}

Import

Domain can be imported using any of these accepted formats:

$ pulumi import gcp:activedirectory/domain:Domain default {{name}}

Constructors

Link copied to clipboard
constructor(admin: Output<String>? = null, authorizedNetworks: Output<List<String>>? = null, domainName: Output<String>? = null, labels: Output<Map<String, String>>? = null, locations: Output<List<String>>? = null, project: Output<String>? = null, reservedIpRange: Output<String>? = null)

Properties

Link copied to clipboard
val admin: Output<String>? = null

The name of delegated administrator account used to perform Active Directory operations. If not specified, setupadmin will be used.

Link copied to clipboard
val authorizedNetworks: Output<List<String>>? = null

The full names of the Google Compute Engine networks the domain instance is connected to. The domain is only available on networks listed in authorizedNetworks. If CIDR subnets overlap between networks, domain creation will fail.

Link copied to clipboard
val domainName: Output<String>? = null

The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions, https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.

Link copied to clipboard
val labels: Output<Map<String, String>>? = null

Resource labels that can contain user-provided metadata

Link copied to clipboard
val locations: Output<List<String>>? = null

Locations where domain needs to be provisioned. compute/docs/regions-zones/ e.g. us-west1 or us-east4 Service supports up to 4 locations at once. Each location will use a /26 block.

Link copied to clipboard
val project: Output<String>? = null

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Link copied to clipboard
val reservedIpRange: Output<String>? = null

The CIDR range of internal addresses that are reserved for this domain. Reserved networks must be /24 or larger. Ranges must be unique and non-overlapping with existing subnets in authorizedNetworks

Functions

Link copied to clipboard
open override fun toJava(): DomainArgs