aws::opensearch-vpc-endpoint

Create an OpenSearch VPC endpoint.

Example

aws::opensearch-vpc-endpoint open-search-vpc-endpoint-example
    domain: $(aws::opensearch-domain open-search-domain-example)
    vpc-options
        subnets: [
            $(aws::subnet subnet-example-1),
            $(aws::subnet subnet-example-2)
        ]
        security-groups: [
            $(aws::security-group security-group-example-1),
            $(aws::security-group security-group-example-2)
        ]
    end
end

Attributes

Attribute Description
domain The domain for the VPC endpoint. (Required)
vpc-options subresource

The VPC options for the VPC endpoint. (Required)

subnets set
The list of subnets in the same region for the VPC endpoint. One subnet per availability zone. (Required)
security-groups set
The list if security groups for the VPC endpoint that need to access the domain. (Required)

Outputs

Attribute Description
endpoint The endpoint connection id for the VPC endpoint.
vpc-endpoint-id The VPC endpoint id.