Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.activedirectory.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.activedirectory.DomainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* Creates a Microsoft AD domain
* To get more information about Domain, see:
* * [API documentation](https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains)
* * How-to Guides
* * [Managed Microsoft Active Directory Quickstart](https://cloud.google.com/managed-microsoft-ad/docs/quickstarts)
* ## Example Usage
* ### Active Directory Domain Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const ad_domain = new gcp.activedirectory.Domain("ad-domain", {
* domainName: "tfgen.org.com",
* locations: ["us-central1"],
* reservedIpRange: "192.168.255.0/24",
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* ad_domain = gcp.activedirectory.Domain("ad-domain",
* domain_name="tfgen.org.com",
* locations=["us-central1"],
* reserved_ip_range="192.168.255.0/24")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var ad_domain = new Gcp.ActiveDirectory.Domain("ad-domain", new()
* {
* DomainName = "tfgen.org.com",
* Locations = new[]
* {
* "us-central1",
* },
* ReservedIpRange = "192.168.255.0/24",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/activedirectory"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := activedirectory.NewDomain(ctx, "ad-domain", &activedirectory.DomainArgs{
* DomainName: pulumi.String("tfgen.org.com"),
* Locations: pulumi.StringArray{
* pulumi.String("us-central1"),
* },
* ReservedIpRange: pulumi.String("192.168.255.0/24"),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* 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());
* }
* }
* ```
* ```yaml
* resources:
* ad-domain:
* type: gcp:activedirectory:Domain
* properties:
* domainName: tfgen.org.com
* locations:
* - us-central1
* reservedIpRange: 192.168.255.0/24
* ```
*
* ## Import
* Domain can be imported using any of these accepted formats:
* * `{{name}}`
* When using the `pulumi import` command, Domain can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:activedirectory/domain:Domain default {{name}}
* ```
* @property admin The name of delegated administrator account used to perform Active Directory operations.
* If not specified, setupadmin will be used.
* @property authorizedNetworks 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.
* @property domainName 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.
* - - -
* @property labels Resource labels that can contain user-provided metadata
* **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
* Please refer to the field `effective_labels` for all of the labels present on the resource.
* @property locations Locations where domain needs to be provisioned. [regions][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.
* @property project The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
* @property reservedIpRange 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
*/
public data class DomainArgs(
public val admin: Output? = null,
public val authorizedNetworks: Output>? = null,
public val domainName: Output? = null,
public val labels: Output