You must be logged in to view saved presets
This template sets up an inbound connection accepter for AWS Opensearch, linking two domains possibly across different AWS accounts.
data "aws_caller_identity" "current" {
}
data "aws_region" "current" {
}
resource "aws_opensearch_inbound_connection_accepter" "foo" {
connection_id = aws_opensearch_outbound_connection.foo.id
}
resource "aws_opensearch_outbound_connection" "foo" {
connection_alias = "outbound_connection"
local_domain_info {
domain_name = "aws_opensearch_domain.local_domain.domain_name"
owner_id = data.aws_caller_identity.current.account_id
region = data.aws_region.current.name
}
remote_domain_info {
domain_name = "aws_opensearch_domain.remote_domain.domain_name"
owner_id = data.aws_caller_identity.current.account_id
region = data.aws_region.current.name
}
}