1. Packages
  2. AWS Classic
  3. API Docs
  4. elasticsearch
  5. DomainPolicy

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

aws.elasticsearch.DomainPolicy

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

    Allows setting policy to an Elasticsearch domain while referencing domain attributes (e.g., ARN)

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.elasticsearch.Domain("example", {
        domainName: "tf-test",
        elasticsearchVersion: "2.3",
    });
    const main = new aws.elasticsearch.DomainPolicy("main", {
        domainName: example.domainName,
        accessPolicies: pulumi.interpolate`{
        "Version": "2012-10-17",
        "Statement": [
            {
                "Action": "es:*",
                "Principal": "*",
                "Effect": "Allow",
                "Condition": {
                    "IpAddress": {"aws:SourceIp": "127.0.0.1/32"}
                },
                "Resource": "${example.arn}/*"
            }
        ]
    }
    `,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.elasticsearch.Domain("example",
        domain_name="tf-test",
        elasticsearch_version="2.3")
    main = aws.elasticsearch.DomainPolicy("main",
        domain_name=example.domain_name,
        access_policies=example.arn.apply(lambda arn: f"""{{
        "Version": "2012-10-17",
        "Statement": [
            {{
                "Action": "es:*",
                "Principal": "*",
                "Effect": "Allow",
                "Condition": {{
                    "IpAddress": {{"aws:SourceIp": "127.0.0.1/32"}}
                }},
                "Resource": "{arn}/*"
            }}
        ]
    }}
    """))
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/elasticsearch"
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
    	"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("tf-test"),
    			ElasticsearchVersion: pulumi.String("2.3"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = elasticsearch.NewDomainPolicy(ctx, "main", &elasticsearch.DomainPolicyArgs{
    			DomainName: example.DomainName,
    			AccessPolicies: example.Arn.ApplyT(func(arn string) (string, error) {
    				return fmt.Sprintf(`{
        "Version": "2012-10-17",
        "Statement": [
            {
                "Action": "es:*",
                "Principal": "*",
                "Effect": "Allow",
                "Condition": {
                    "IpAddress": {"aws:SourceIp": "127.0.0.1/32"}
                },
                "Resource": "%v/*"
            }
        ]
    }
    `, arn), nil
    			}).(pulumi.StringOutput),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.ElasticSearch.Domain("example", new()
        {
            DomainName = "tf-test",
            ElasticsearchVersion = "2.3",
        });
    
        var main = new Aws.ElasticSearch.DomainPolicy("main", new()
        {
            DomainName = example.DomainName,
            AccessPolicies = example.Arn.Apply(arn => @$"{{
        ""Version"": ""2012-10-17"",
        ""Statement"": [
            {{
                ""Action"": ""es:*"",
                ""Principal"": ""*"",
                ""Effect"": ""Allow"",
                ""Condition"": {{
                    ""IpAddress"": {{""aws:SourceIp"": ""127.0.0.1/32""}}
                }},
                ""Resource"": ""{arn}/*""
            }}
        ]
    }}
    "),
        });
    
    });
    
    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.DomainPolicy;
    import com.pulumi.aws.elasticsearch.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 example = new Domain("example", DomainArgs.builder()        
                .domainName("tf-test")
                .elasticsearchVersion("2.3")
                .build());
    
            var main = new DomainPolicy("main", DomainPolicyArgs.builder()        
                .domainName(example.domainName())
                .accessPolicies(example.arn().applyValue(arn -> """
    {
        "Version": "2012-10-17",
        "Statement": [
            {
                "Action": "es:*",
                "Principal": "*",
                "Effect": "Allow",
                "Condition": {
                    "IpAddress": {"aws:SourceIp": "127.0.0.1/32"}
                },
                "Resource": "%s/*"
            }
        ]
    }
    ", arn)))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:elasticsearch:Domain
        properties:
          domainName: tf-test
          elasticsearchVersion: '2.3'
      main:
        type: aws:elasticsearch:DomainPolicy
        properties:
          domainName: ${example.domainName}
          accessPolicies: |
            {
                "Version": "2012-10-17",
                "Statement": [
                    {
                        "Action": "es:*",
                        "Principal": "*",
                        "Effect": "Allow",
                        "Condition": {
                            "IpAddress": {"aws:SourceIp": "127.0.0.1/32"}
                        },
                        "Resource": "${example.arn}/*"
                    }
                ]
            }        
    

    Create DomainPolicy Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DomainPolicy(name: string, args: DomainPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def DomainPolicy(resource_name: str,
                     args: DomainPolicyArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def DomainPolicy(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     access_policies: Optional[str] = None,
                     domain_name: Optional[str] = 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: aws:elasticsearch:DomainPolicy
    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 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.

    Example

    The following reference example uses placeholder values for all input properties.

    var domainPolicyResource = new Aws.ElasticSearch.DomainPolicy("domainPolicyResource", new()
    {
        AccessPolicies = "string",
        DomainName = "string",
    });
    
    example, err := elasticsearch.NewDomainPolicy(ctx, "domainPolicyResource", &elasticsearch.DomainPolicyArgs{
    	AccessPolicies: pulumi.Any("string"),
    	DomainName:     pulumi.String("string"),
    })
    
    var domainPolicyResource = new DomainPolicy("domainPolicyResource", DomainPolicyArgs.builder()        
        .accessPolicies("string")
        .domainName("string")
        .build());
    
    domain_policy_resource = aws.elasticsearch.DomainPolicy("domainPolicyResource",
        access_policies="string",
        domain_name="string")
    
    const domainPolicyResource = new aws.elasticsearch.DomainPolicy("domainPolicyResource", {
        accessPolicies: "string",
        domainName: "string",
    });
    
    type: aws:elasticsearch:DomainPolicy
    properties:
        accessPolicies: string
        domainName: string
    

    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:

    AccessPolicies string | string
    IAM policy document specifying the access policies for the domain
    DomainName string
    Name of the domain.
    AccessPolicies string | string
    IAM policy document specifying the access policies for the domain
    DomainName string
    Name of the domain.
    accessPolicies String | String
    IAM policy document specifying the access policies for the domain
    domainName String
    Name of the domain.
    accessPolicies string | PolicyDocument
    IAM policy document specifying the access policies for the domain
    domainName string
    Name of the domain.
    access_policies str | str
    IAM policy document specifying the access policies for the domain
    domain_name str
    Name of the domain.
    accessPolicies String |
    IAM policy document specifying the access policies for the domain
    domainName String
    Name of the domain.

    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,
            access_policies: Optional[str] = None,
            domain_name: Optional[str] = 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.
    The following state arguments are supported:
    AccessPolicies string | string
    IAM policy document specifying the access policies for the domain
    DomainName string
    Name of the domain.
    AccessPolicies string | string
    IAM policy document specifying the access policies for the domain
    DomainName string
    Name of the domain.
    accessPolicies String | String
    IAM policy document specifying the access policies for the domain
    domainName String
    Name of the domain.
    accessPolicies string | PolicyDocument
    IAM policy document specifying the access policies for the domain
    domainName string
    Name of the domain.
    access_policies str | str
    IAM policy document specifying the access policies for the domain
    domain_name str
    Name of the domain.
    accessPolicies String |
    IAM policy document specifying the access policies for the domain
    domainName String
    Name of the domain.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi