Domain

class Domain : KotlinCustomResource

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}}

Properties

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

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

Link copied to clipboard

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>

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 fqdn: Output<String>

The fully-qualified domain name of the exposed domain used by clients to connect to the service. Similar to what would be chosen for an Active Directory set up on an internal network.

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

Resource labels that can contain user-provided metadata

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

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 name: Output<String>

The unique name of the domain using the format: projects/{project}/locations/global/domains/{domainName}.

Link copied to clipboard
val project: Output<String>

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 pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val reservedIpRange: Output<String>

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

Link copied to clipboard
val urn: Output<String>