aws.elasticsearch.DomainSamlOptions
Explore with Pulumi AI
Manages SAML authentication options for an AWS Elasticsearch Domain.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
import * as std from "@pulumi/std";
const example = new aws.elasticsearch.Domain("example", {
    domainName: "example",
    elasticsearchVersion: "1.5",
    clusterConfig: {
        instanceType: "r4.large.elasticsearch",
    },
    snapshotOptions: {
        automatedSnapshotStartHour: 23,
    },
    tags: {
        Domain: "TestDomain",
    },
});
const exampleDomainSamlOptions = new aws.elasticsearch.DomainSamlOptions("example", {
    domainName: example.domainName,
    samlOptions: {
        enabled: true,
        idp: {
            entityId: "https://example.com",
            metadataContent: std.file({
                input: "./saml-metadata.xml",
            }).then(invoke => invoke.result),
        },
    },
});
import pulumi
import pulumi_aws as aws
import pulumi_std as std
example = aws.elasticsearch.Domain("example",
    domain_name="example",
    elasticsearch_version="1.5",
    cluster_config={
        "instance_type": "r4.large.elasticsearch",
    },
    snapshot_options={
        "automated_snapshot_start_hour": 23,
    },
    tags={
        "Domain": "TestDomain",
    })
example_domain_saml_options = aws.elasticsearch.DomainSamlOptions("example",
    domain_name=example.domain_name,
    saml_options={
        "enabled": True,
        "idp": {
            "entity_id": "https://example.com",
            "metadata_content": std.file(input="./saml-metadata.xml").result,
        },
    })
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/elasticsearch"
	"github.com/pulumi/pulumi-std/sdk/go/std"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := elasticsearch.NewDomain(ctx, "example", &elasticsearch.DomainArgs{
			DomainName:           pulumi.String("example"),
			ElasticsearchVersion: pulumi.String("1.5"),
			ClusterConfig: &elasticsearch.DomainClusterConfigArgs{
				InstanceType: pulumi.String("r4.large.elasticsearch"),
			},
			SnapshotOptions: &elasticsearch.DomainSnapshotOptionsArgs{
				AutomatedSnapshotStartHour: pulumi.Int(23),
			},
			Tags: pulumi.StringMap{
				"Domain": pulumi.String("TestDomain"),
			},
		})
		if err != nil {
			return err
		}
		invokeFile, err := std.File(ctx, &std.FileArgs{
			Input: "./saml-metadata.xml",
		}, nil)
		if err != nil {
			return err
		}
		_, err = elasticsearch.NewDomainSamlOptions(ctx, "example", &elasticsearch.DomainSamlOptionsArgs{
			DomainName: example.DomainName,
			SamlOptions: &elasticsearch.DomainSamlOptionsSamlOptionsArgs{
				Enabled: pulumi.Bool(true),
				Idp: &elasticsearch.DomainSamlOptionsSamlOptionsIdpArgs{
					EntityId:        pulumi.String("https://example.com"),
					MetadataContent: pulumi.String(invokeFile.Result),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
using Std = Pulumi.Std;
return await Deployment.RunAsync(() => 
{
    var example = new Aws.ElasticSearch.Domain("example", new()
    {
        DomainName = "example",
        ElasticsearchVersion = "1.5",
        ClusterConfig = new Aws.ElasticSearch.Inputs.DomainClusterConfigArgs
        {
            InstanceType = "r4.large.elasticsearch",
        },
        SnapshotOptions = new Aws.ElasticSearch.Inputs.DomainSnapshotOptionsArgs
        {
            AutomatedSnapshotStartHour = 23,
        },
        Tags = 
        {
            { "Domain", "TestDomain" },
        },
    });
    var exampleDomainSamlOptions = new Aws.ElasticSearch.DomainSamlOptions("example", new()
    {
        DomainName = example.DomainName,
        SamlOptions = new Aws.ElasticSearch.Inputs.DomainSamlOptionsSamlOptionsArgs
        {
            Enabled = true,
            Idp = new Aws.ElasticSearch.Inputs.DomainSamlOptionsSamlOptionsIdpArgs
            {
                EntityId = "https://example.com",
                MetadataContent = Std.File.Invoke(new()
                {
                    Input = "./saml-metadata.xml",
                }).Apply(invoke => invoke.Result),
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.elasticsearch.Domain;
import com.pulumi.aws.elasticsearch.DomainArgs;
import com.pulumi.aws.elasticsearch.inputs.DomainClusterConfigArgs;
import com.pulumi.aws.elasticsearch.inputs.DomainSnapshotOptionsArgs;
import com.pulumi.aws.elasticsearch.DomainSamlOptions;
import com.pulumi.aws.elasticsearch.DomainSamlOptionsArgs;
import com.pulumi.aws.elasticsearch.inputs.DomainSamlOptionsSamlOptionsArgs;
import com.pulumi.aws.elasticsearch.inputs.DomainSamlOptionsSamlOptionsIdpArgs;
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 example = new Domain("example", DomainArgs.builder()
            .domainName("example")
            .elasticsearchVersion("1.5")
            .clusterConfig(DomainClusterConfigArgs.builder()
                .instanceType("r4.large.elasticsearch")
                .build())
            .snapshotOptions(DomainSnapshotOptionsArgs.builder()
                .automatedSnapshotStartHour(23)
                .build())
            .tags(Map.of("Domain", "TestDomain"))
            .build());
        var exampleDomainSamlOptions = new DomainSamlOptions("exampleDomainSamlOptions", DomainSamlOptionsArgs.builder()
            .domainName(example.domainName())
            .samlOptions(DomainSamlOptionsSamlOptionsArgs.builder()
                .enabled(true)
                .idp(DomainSamlOptionsSamlOptionsIdpArgs.builder()
                    .entityId("https://example.com")
                    .metadataContent(StdFunctions.file(FileArgs.builder()
                        .input("./saml-metadata.xml")
                        .build()).result())
                    .build())
                .build())
            .build());
    }
}
resources:
  example:
    type: aws:elasticsearch:Domain
    properties:
      domainName: example
      elasticsearchVersion: '1.5'
      clusterConfig:
        instanceType: r4.large.elasticsearch
      snapshotOptions:
        automatedSnapshotStartHour: 23
      tags:
        Domain: TestDomain
  exampleDomainSamlOptions:
    type: aws:elasticsearch:DomainSamlOptions
    name: example
    properties:
      domainName: ${example.domainName}
      samlOptions:
        enabled: true
        idp:
          entityId: https://example.com
          metadataContent:
            fn::invoke:
              function: std:file
              arguments:
                input: ./saml-metadata.xml
              return: result
Create DomainSamlOptions Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DomainSamlOptions(name: string, args: DomainSamlOptionsArgs, opts?: CustomResourceOptions);@overload
def DomainSamlOptions(resource_name: str,
                      args: DomainSamlOptionsArgs,
                      opts: Optional[ResourceOptions] = None)
@overload
def DomainSamlOptions(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      domain_name: Optional[str] = None,
                      saml_options: Optional[DomainSamlOptionsSamlOptionsArgs] = None)func NewDomainSamlOptions(ctx *Context, name string, args DomainSamlOptionsArgs, opts ...ResourceOption) (*DomainSamlOptions, error)public DomainSamlOptions(string name, DomainSamlOptionsArgs args, CustomResourceOptions? opts = null)
public DomainSamlOptions(String name, DomainSamlOptionsArgs args)
public DomainSamlOptions(String name, DomainSamlOptionsArgs args, CustomResourceOptions options)
type: aws:elasticsearch:DomainSamlOptions
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DomainSamlOptionsArgs
- 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 DomainSamlOptionsArgs
- 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 DomainSamlOptionsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DomainSamlOptionsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DomainSamlOptionsArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var domainSamlOptionsResource = new Aws.ElasticSearch.DomainSamlOptions("domainSamlOptionsResource", new()
{
    DomainName = "string",
    SamlOptions = new Aws.ElasticSearch.Inputs.DomainSamlOptionsSamlOptionsArgs
    {
        Enabled = false,
        Idp = new Aws.ElasticSearch.Inputs.DomainSamlOptionsSamlOptionsIdpArgs
        {
            EntityId = "string",
            MetadataContent = "string",
        },
        MasterBackendRole = "string",
        MasterUserName = "string",
        RolesKey = "string",
        SessionTimeoutMinutes = 0,
        SubjectKey = "string",
    },
});
example, err := elasticsearch.NewDomainSamlOptions(ctx, "domainSamlOptionsResource", &elasticsearch.DomainSamlOptionsArgs{
	DomainName: pulumi.String("string"),
	SamlOptions: &elasticsearch.DomainSamlOptionsSamlOptionsArgs{
		Enabled: pulumi.Bool(false),
		Idp: &elasticsearch.DomainSamlOptionsSamlOptionsIdpArgs{
			EntityId:        pulumi.String("string"),
			MetadataContent: pulumi.String("string"),
		},
		MasterBackendRole:     pulumi.String("string"),
		MasterUserName:        pulumi.String("string"),
		RolesKey:              pulumi.String("string"),
		SessionTimeoutMinutes: pulumi.Int(0),
		SubjectKey:            pulumi.String("string"),
	},
})
var domainSamlOptionsResource = new DomainSamlOptions("domainSamlOptionsResource", DomainSamlOptionsArgs.builder()
    .domainName("string")
    .samlOptions(DomainSamlOptionsSamlOptionsArgs.builder()
        .enabled(false)
        .idp(DomainSamlOptionsSamlOptionsIdpArgs.builder()
            .entityId("string")
            .metadataContent("string")
            .build())
        .masterBackendRole("string")
        .masterUserName("string")
        .rolesKey("string")
        .sessionTimeoutMinutes(0)
        .subjectKey("string")
        .build())
    .build());
domain_saml_options_resource = aws.elasticsearch.DomainSamlOptions("domainSamlOptionsResource",
    domain_name="string",
    saml_options={
        "enabled": False,
        "idp": {
            "entity_id": "string",
            "metadata_content": "string",
        },
        "master_backend_role": "string",
        "master_user_name": "string",
        "roles_key": "string",
        "session_timeout_minutes": 0,
        "subject_key": "string",
    })
const domainSamlOptionsResource = new aws.elasticsearch.DomainSamlOptions("domainSamlOptionsResource", {
    domainName: "string",
    samlOptions: {
        enabled: false,
        idp: {
            entityId: "string",
            metadataContent: "string",
        },
        masterBackendRole: "string",
        masterUserName: "string",
        rolesKey: "string",
        sessionTimeoutMinutes: 0,
        subjectKey: "string",
    },
});
type: aws:elasticsearch:DomainSamlOptions
properties:
    domainName: string
    samlOptions:
        enabled: false
        idp:
            entityId: string
            metadataContent: string
        masterBackendRole: string
        masterUserName: string
        rolesKey: string
        sessionTimeoutMinutes: 0
        subjectKey: string
DomainSamlOptions Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DomainSamlOptions resource accepts the following input properties:
- DomainName string
- Name of the domain. - The following arguments are optional: 
- SamlOptions DomainSaml Options Saml Options 
- The SAML authentication options for an AWS Elasticsearch Domain.
- DomainName string
- Name of the domain. - The following arguments are optional: 
- SamlOptions DomainSaml Options Saml Options Args 
- The SAML authentication options for an AWS Elasticsearch Domain.
- domainName String
- Name of the domain. - The following arguments are optional: 
- samlOptions DomainSaml Options Saml Options 
- The SAML authentication options for an AWS Elasticsearch Domain.
- domainName string
- Name of the domain. - The following arguments are optional: 
- samlOptions DomainSaml Options Saml Options 
- The SAML authentication options for an AWS Elasticsearch Domain.
- domain_name str
- Name of the domain. - The following arguments are optional: 
- saml_options DomainSaml Options Saml Options Args 
- The SAML authentication options for an AWS Elasticsearch Domain.
- domainName String
- Name of the domain. - The following arguments are optional: 
- samlOptions Property Map
- The SAML authentication options for an AWS Elasticsearch Domain.
Outputs
All input properties are implicitly available as output properties. Additionally, the DomainSamlOptions 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 DomainSamlOptions Resource
Get an existing DomainSamlOptions 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?: DomainSamlOptionsState, opts?: CustomResourceOptions): DomainSamlOptions@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        domain_name: Optional[str] = None,
        saml_options: Optional[DomainSamlOptionsSamlOptionsArgs] = None) -> DomainSamlOptionsfunc GetDomainSamlOptions(ctx *Context, name string, id IDInput, state *DomainSamlOptionsState, opts ...ResourceOption) (*DomainSamlOptions, error)public static DomainSamlOptions Get(string name, Input<string> id, DomainSamlOptionsState? state, CustomResourceOptions? opts = null)public static DomainSamlOptions get(String name, Output<String> id, DomainSamlOptionsState state, CustomResourceOptions options)resources:  _:    type: aws:elasticsearch:DomainSamlOptions    get:      id: ${id}- 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.
- DomainName string
- Name of the domain. - The following arguments are optional: 
- SamlOptions DomainSaml Options Saml Options 
- The SAML authentication options for an AWS Elasticsearch Domain.
- DomainName string
- Name of the domain. - The following arguments are optional: 
- SamlOptions DomainSaml Options Saml Options Args 
- The SAML authentication options for an AWS Elasticsearch Domain.
- domainName String
- Name of the domain. - The following arguments are optional: 
- samlOptions DomainSaml Options Saml Options 
- The SAML authentication options for an AWS Elasticsearch Domain.
- domainName string
- Name of the domain. - The following arguments are optional: 
- samlOptions DomainSaml Options Saml Options 
- The SAML authentication options for an AWS Elasticsearch Domain.
- domain_name str
- Name of the domain. - The following arguments are optional: 
- saml_options DomainSaml Options Saml Options Args 
- The SAML authentication options for an AWS Elasticsearch Domain.
- domainName String
- Name of the domain. - The following arguments are optional: 
- samlOptions Property Map
- The SAML authentication options for an AWS Elasticsearch Domain.
Supporting Types
DomainSamlOptionsSamlOptions, DomainSamlOptionsSamlOptionsArgs          
- Enabled bool
- Whether SAML authentication is enabled.
- Idp
DomainSaml Options Saml Options Idp 
- Information from your identity provider.
- MasterBackend stringRole 
- This backend role from the SAML IdP receives full permissions to the cluster, equivalent to a new master user.
- MasterUser stringName 
- This username from the SAML IdP receives full permissions to the cluster, equivalent to a new master user.
- RolesKey string
- Element of the SAML assertion to use for backend roles. Default is roles.
- SessionTimeout intMinutes 
- Duration of a session in minutes after a user logs in. Default is 60. Maximum value is 1,440.
- SubjectKey string
- Custom SAML attribute to use for user names. Default is an empty string - "". This will cause Elasticsearch to use theNameIDelement of theSubject, which is the default location for name identifiers in the SAML specification.
- Enabled bool
- Whether SAML authentication is enabled.
- Idp
DomainSaml Options Saml Options Idp 
- Information from your identity provider.
- MasterBackend stringRole 
- This backend role from the SAML IdP receives full permissions to the cluster, equivalent to a new master user.
- MasterUser stringName 
- This username from the SAML IdP receives full permissions to the cluster, equivalent to a new master user.
- RolesKey string
- Element of the SAML assertion to use for backend roles. Default is roles.
- SessionTimeout intMinutes 
- Duration of a session in minutes after a user logs in. Default is 60. Maximum value is 1,440.
- SubjectKey string
- Custom SAML attribute to use for user names. Default is an empty string - "". This will cause Elasticsearch to use theNameIDelement of theSubject, which is the default location for name identifiers in the SAML specification.
- enabled Boolean
- Whether SAML authentication is enabled.
- idp
DomainSaml Options Saml Options Idp 
- Information from your identity provider.
- masterBackend StringRole 
- This backend role from the SAML IdP receives full permissions to the cluster, equivalent to a new master user.
- masterUser StringName 
- This username from the SAML IdP receives full permissions to the cluster, equivalent to a new master user.
- rolesKey String
- Element of the SAML assertion to use for backend roles. Default is roles.
- sessionTimeout IntegerMinutes 
- Duration of a session in minutes after a user logs in. Default is 60. Maximum value is 1,440.
- subjectKey String
- Custom SAML attribute to use for user names. Default is an empty string - "". This will cause Elasticsearch to use theNameIDelement of theSubject, which is the default location for name identifiers in the SAML specification.
- enabled boolean
- Whether SAML authentication is enabled.
- idp
DomainSaml Options Saml Options Idp 
- Information from your identity provider.
- masterBackend stringRole 
- This backend role from the SAML IdP receives full permissions to the cluster, equivalent to a new master user.
- masterUser stringName 
- This username from the SAML IdP receives full permissions to the cluster, equivalent to a new master user.
- rolesKey string
- Element of the SAML assertion to use for backend roles. Default is roles.
- sessionTimeout numberMinutes 
- Duration of a session in minutes after a user logs in. Default is 60. Maximum value is 1,440.
- subjectKey string
- Custom SAML attribute to use for user names. Default is an empty string - "". This will cause Elasticsearch to use theNameIDelement of theSubject, which is the default location for name identifiers in the SAML specification.
- enabled bool
- Whether SAML authentication is enabled.
- idp
DomainSaml Options Saml Options Idp 
- Information from your identity provider.
- master_backend_ strrole 
- This backend role from the SAML IdP receives full permissions to the cluster, equivalent to a new master user.
- master_user_ strname 
- This username from the SAML IdP receives full permissions to the cluster, equivalent to a new master user.
- roles_key str
- Element of the SAML assertion to use for backend roles. Default is roles.
- session_timeout_ intminutes 
- Duration of a session in minutes after a user logs in. Default is 60. Maximum value is 1,440.
- subject_key str
- Custom SAML attribute to use for user names. Default is an empty string - "". This will cause Elasticsearch to use theNameIDelement of theSubject, which is the default location for name identifiers in the SAML specification.
- enabled Boolean
- Whether SAML authentication is enabled.
- idp Property Map
- Information from your identity provider.
- masterBackend StringRole 
- This backend role from the SAML IdP receives full permissions to the cluster, equivalent to a new master user.
- masterUser StringName 
- This username from the SAML IdP receives full permissions to the cluster, equivalent to a new master user.
- rolesKey String
- Element of the SAML assertion to use for backend roles. Default is roles.
- sessionTimeout NumberMinutes 
- Duration of a session in minutes after a user logs in. Default is 60. Maximum value is 1,440.
- subjectKey String
- Custom SAML attribute to use for user names. Default is an empty string - "". This will cause Elasticsearch to use theNameIDelement of theSubject, which is the default location for name identifiers in the SAML specification.
DomainSamlOptionsSamlOptionsIdp, DomainSamlOptionsSamlOptionsIdpArgs            
- EntityId string
- The unique Entity ID of the application in SAML Identity Provider.
- MetadataContent string
- The Metadata of the SAML application in xml format.
- EntityId string
- The unique Entity ID of the application in SAML Identity Provider.
- MetadataContent string
- The Metadata of the SAML application in xml format.
- entityId String
- The unique Entity ID of the application in SAML Identity Provider.
- metadataContent String
- The Metadata of the SAML application in xml format.
- entityId string
- The unique Entity ID of the application in SAML Identity Provider.
- metadataContent string
- The Metadata of the SAML application in xml format.
- entity_id str
- The unique Entity ID of the application in SAML Identity Provider.
- metadata_content str
- The Metadata of the SAML application in xml format.
- entityId String
- The unique Entity ID of the application in SAML Identity Provider.
- metadataContent String
- The Metadata of the SAML application in xml format.
Import
Using pulumi import, import Elasticsearch domains using the domain_name. For example:
$ pulumi import aws:elasticsearch/domainSamlOptions:DomainSamlOptions example domain_name
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the awsTerraform Provider.