zitadel.DomainPolicy
Explore with Pulumi AI
Resource representing the custom domain policy of an organization.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Zitadel = Pulumiverse.Zitadel;
return await Deployment.RunAsync(() =>
{
var domainPolicy = new Zitadel.DomainPolicy("domainPolicy", new()
{
OrgId = zitadel_org.Org.Id,
UserLoginMustBeDomain = false,
ValidateOrgDomains = false,
SmtpSenderAddressMatchesInstanceDomain = 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.NewDomainPolicy(ctx, "domainPolicy", &zitadel.DomainPolicyArgs{
OrgId: pulumi.Any(zitadel_org.Org.Id),
UserLoginMustBeDomain: pulumi.Bool(false),
ValidateOrgDomains: pulumi.Bool(false),
SmtpSenderAddressMatchesInstanceDomain: 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.DomainPolicy;
import com.pulumi.zitadel.DomainPolicyArgs;
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 DomainPolicy("domainPolicy", DomainPolicyArgs.builder()
.orgId(zitadel_org.org().id())
.userLoginMustBeDomain(false)
.validateOrgDomains(false)
.smtpSenderAddressMatchesInstanceDomain(false)
.build());
}
}
import pulumi
import pulumiverse_zitadel as zitadel
domain_policy = zitadel.DomainPolicy("domainPolicy",
org_id=zitadel_org["org"]["id"],
user_login_must_be_domain=False,
validate_org_domains=False,
smtp_sender_address_matches_instance_domain=False)
import * as pulumi from "@pulumi/pulumi";
import * as zitadel from "@pulumiverse/zitadel";
const domainPolicy = new zitadel.DomainPolicy("domainPolicy", {
orgId: zitadel_org.org.id,
userLoginMustBeDomain: false,
validateOrgDomains: false,
smtpSenderAddressMatchesInstanceDomain: false,
});
resources:
domainPolicy:
type: zitadel:DomainPolicy
properties:
orgId: ${zitadel_org.org.id}
userLoginMustBeDomain: false
validateOrgDomains: false
smtpSenderAddressMatchesInstanceDomain: false
Create DomainPolicy Resource
new DomainPolicy(name: string, args: DomainPolicyArgs, opts?: CustomResourceOptions);
@overload
def DomainPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
org_id: Optional[str] = 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 DomainPolicy(resource_name: str,
args: DomainPolicyArgs,
opts: Optional[ResourceOptions] = None)
func NewDomainPolicy(ctx *Context, name string, args DomainPolicyArgs, opts ...ResourceOption) (*DomainPolicy, error)
public DomainPolicy(string name, DomainPolicyArgs args, CustomResourceOptions? opts = null)
public DomainPolicy(String name, DomainPolicyArgs args)
public DomainPolicy(String name, DomainPolicyArgs args, CustomResourceOptions options)
type: zitadel:DomainPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DomainPolicyArgs
- 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 DomainPolicyArgs
- 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 DomainPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DomainPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DomainPolicyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
DomainPolicy 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 DomainPolicy resource accepts the following input properties:
- Org
Id string Id for the organization
- Smtp
Sender boolAddress Matches Instance Domain - User
Login boolMust Be Domain User login must be domain
- Validate
Org boolDomains Validate organization domains
- Org
Id string Id for the organization
- Smtp
Sender boolAddress Matches Instance Domain - User
Login boolMust Be Domain User login must be domain
- Validate
Org boolDomains Validate organization domains
- org
Id String Id for the organization
- smtp
Sender BooleanAddress Matches Instance Domain - user
Login BooleanMust Be Domain User login must be domain
- validate
Org BooleanDomains Validate organization domains
- org
Id string Id for the organization
- smtp
Sender booleanAddress Matches Instance Domain - user
Login booleanMust Be Domain User login must be domain
- validate
Org booleanDomains Validate organization domains
- org_
id str Id for the organization
- smtp_
sender_ booladdress_ matches_ instance_ domain - user_
login_ boolmust_ be_ domain User login must be domain
- validate_
org_ booldomains Validate organization domains
- org
Id String Id for the organization
- smtp
Sender BooleanAddress Matches Instance Domain - user
Login BooleanMust Be Domain User login must be domain
- validate
Org BooleanDomains Validate organization domains
Outputs
All input properties are implicitly available as output properties. Additionally, the DomainPolicy 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 DomainPolicy Resource
Get an existing DomainPolicy 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?: DomainPolicyState, opts?: CustomResourceOptions): DomainPolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
org_id: Optional[str] = None,
smtp_sender_address_matches_instance_domain: Optional[bool] = None,
user_login_must_be_domain: Optional[bool] = None,
validate_org_domains: Optional[bool] = None) -> DomainPolicy
func GetDomainPolicy(ctx *Context, name string, id IDInput, state *DomainPolicyState, opts ...ResourceOption) (*DomainPolicy, error)
public static DomainPolicy Get(string name, Input<string> id, DomainPolicyState? state, CustomResourceOptions? opts = null)
public static DomainPolicy get(String name, Output<String> id, DomainPolicyState 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.
- Org
Id string Id for the organization
- Smtp
Sender boolAddress Matches Instance Domain - User
Login boolMust Be Domain User login must be domain
- Validate
Org boolDomains Validate organization domains
- Org
Id string Id for the organization
- Smtp
Sender boolAddress Matches Instance Domain - User
Login boolMust Be Domain User login must be domain
- Validate
Org boolDomains Validate organization domains
- org
Id String Id for the organization
- smtp
Sender BooleanAddress Matches Instance Domain - user
Login BooleanMust Be Domain User login must be domain
- validate
Org BooleanDomains Validate organization domains
- org
Id string Id for the organization
- smtp
Sender booleanAddress Matches Instance Domain - user
Login booleanMust Be Domain User login must be domain
- validate
Org booleanDomains Validate organization domains
- org_
id str Id for the organization
- smtp_
sender_ booladdress_ matches_ instance_ domain - user_
login_ boolmust_ be_ domain User login must be domain
- validate_
org_ booldomains Validate organization domains
- org
Id String Id for the organization
- smtp
Sender BooleanAddress Matches Instance Domain - user
Login BooleanMust Be Domain User login must be domain
- validate
Org BooleanDomains 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.