1. Packages
  2. Zitadel
  3. API Docs
  4. DefaultDomainPolicy
zitadel v0.0.12 published on Sunday, Jun 11, 2023 by pulumiverse

zitadel.DefaultDomainPolicy

Explore with Pulumi AI

zitadel logo
zitadel v0.0.12 published on Sunday, Jun 11, 2023 by pulumiverse

    Resource representing the default domain policy.

    Example Usage

    using System.Collections.Generic;
    using Pulumi;
    using Zitadel = Pulumiverse.Zitadel;
    
    return await Deployment.RunAsync(() => 
    {
        var domainPolicy = new Zitadel.DefaultDomainPolicy("domainPolicy", new()
        {
            SmtpSenderAddressMatchesInstanceDomain = false,
            UserLoginMustBeDomain = false,
            ValidateOrgDomains = false,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-zitadel/sdk/go/zitadel"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := zitadel.NewDefaultDomainPolicy(ctx, "domainPolicy", &zitadel.DefaultDomainPolicyArgs{
    			SmtpSenderAddressMatchesInstanceDomain: pulumi.Bool(false),
    			UserLoginMustBeDomain:                  pulumi.Bool(false),
    			ValidateOrgDomains:                     pulumi.Bool(false),
    		})
    		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.zitadel.DefaultDomainPolicy;
    import com.pulumi.zitadel.DefaultDomainPolicyArgs;
    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 domainPolicy = new DefaultDomainPolicy("domainPolicy", DefaultDomainPolicyArgs.builder()        
                .smtpSenderAddressMatchesInstanceDomain(false)
                .userLoginMustBeDomain(false)
                .validateOrgDomains(false)
                .build());
    
        }
    }
    
    import pulumi
    import pulumiverse_zitadel as zitadel
    
    domain_policy = zitadel.DefaultDomainPolicy("domainPolicy",
        smtp_sender_address_matches_instance_domain=False,
        user_login_must_be_domain=False,
        validate_org_domains=False)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as zitadel from "@pulumi/zitadel";
    
    const domainPolicy = new zitadel.DefaultDomainPolicy("domain_policy", {
        smtpSenderAddressMatchesInstanceDomain: false,
        userLoginMustBeDomain: false,
        validateOrgDomains: false,
    });
    
    resources:
      domainPolicy:
        type: zitadel:DefaultDomainPolicy
        properties:
          smtpSenderAddressMatchesInstanceDomain: false
          userLoginMustBeDomain: false
          validateOrgDomains: false
    

    Create DefaultDomainPolicy Resource

    new DefaultDomainPolicy(name: string, args: DefaultDomainPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def DefaultDomainPolicy(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            smtp_sender_address_matches_instance_domain: Optional[bool] = None,
                            user_login_must_be_domain: Optional[bool] = None,
                            validate_org_domains: Optional[bool] = None)
    @overload
    def DefaultDomainPolicy(resource_name: str,
                            args: DefaultDomainPolicyArgs,
                            opts: Optional[ResourceOptions] = None)
    func NewDefaultDomainPolicy(ctx *Context, name string, args DefaultDomainPolicyArgs, opts ...ResourceOption) (*DefaultDomainPolicy, error)
    public DefaultDomainPolicy(string name, DefaultDomainPolicyArgs args, CustomResourceOptions? opts = null)
    public DefaultDomainPolicy(String name, DefaultDomainPolicyArgs args)
    public DefaultDomainPolicy(String name, DefaultDomainPolicyArgs args, CustomResourceOptions options)
    
    type: zitadel:DefaultDomainPolicy
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args DefaultDomainPolicyArgs
    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 DefaultDomainPolicyArgs
    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 DefaultDomainPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DefaultDomainPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DefaultDomainPolicyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    DefaultDomainPolicy Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The DefaultDomainPolicy resource accepts the following input properties:

    SmtpSenderAddressMatchesInstanceDomain bool
    UserLoginMustBeDomain bool

    User login must be domain

    ValidateOrgDomains bool

    Validate organization domains

    SmtpSenderAddressMatchesInstanceDomain bool
    UserLoginMustBeDomain bool

    User login must be domain

    ValidateOrgDomains bool

    Validate organization domains

    smtpSenderAddressMatchesInstanceDomain Boolean
    userLoginMustBeDomain Boolean

    User login must be domain

    validateOrgDomains Boolean

    Validate organization domains

    smtpSenderAddressMatchesInstanceDomain boolean
    userLoginMustBeDomain boolean

    User login must be domain

    validateOrgDomains boolean

    Validate organization domains

    smtp_sender_address_matches_instance_domain bool
    user_login_must_be_domain bool

    User login must be domain

    validate_org_domains bool

    Validate organization domains

    smtpSenderAddressMatchesInstanceDomain Boolean
    userLoginMustBeDomain Boolean

    User login must be domain

    validateOrgDomains Boolean

    Validate organization domains

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DefaultDomainPolicy resource produces the following output properties:

    Id string

    The provider-assigned unique ID for this managed resource.

    Id string

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    id string

    The provider-assigned unique ID for this managed resource.

    id str

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    Look up Existing DefaultDomainPolicy Resource

    Get an existing DefaultDomainPolicy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DefaultDomainPolicyState, opts?: CustomResourceOptions): DefaultDomainPolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            smtp_sender_address_matches_instance_domain: Optional[bool] = None,
            user_login_must_be_domain: Optional[bool] = None,
            validate_org_domains: Optional[bool] = None) -> DefaultDomainPolicy
    func GetDefaultDomainPolicy(ctx *Context, name string, id IDInput, state *DefaultDomainPolicyState, opts ...ResourceOption) (*DefaultDomainPolicy, error)
    public static DefaultDomainPolicy Get(string name, Input<string> id, DefaultDomainPolicyState? state, CustomResourceOptions? opts = null)
    public static DefaultDomainPolicy get(String name, Output<String> id, DefaultDomainPolicyState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    SmtpSenderAddressMatchesInstanceDomain bool
    UserLoginMustBeDomain bool

    User login must be domain

    ValidateOrgDomains bool

    Validate organization domains

    SmtpSenderAddressMatchesInstanceDomain bool
    UserLoginMustBeDomain bool

    User login must be domain

    ValidateOrgDomains bool

    Validate organization domains

    smtpSenderAddressMatchesInstanceDomain Boolean
    userLoginMustBeDomain Boolean

    User login must be domain

    validateOrgDomains Boolean

    Validate organization domains

    smtpSenderAddressMatchesInstanceDomain boolean
    userLoginMustBeDomain boolean

    User login must be domain

    validateOrgDomains boolean

    Validate organization domains

    smtp_sender_address_matches_instance_domain bool
    user_login_must_be_domain bool

    User login must be domain

    validate_org_domains bool

    Validate organization domains

    smtpSenderAddressMatchesInstanceDomain Boolean
    userLoginMustBeDomain Boolean

    User login must be domain

    validateOrgDomains Boolean

    Validate organization domains

    Package Details

    Repository
    zitadel pulumiverse/pulumi-zitadel
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the zitadel Terraform Provider.

    zitadel logo
    zitadel v0.0.12 published on Sunday, Jun 11, 2023 by pulumiverse