AWSStatic-verified

OpenSearch Domain that Refuses to Be Public

A VPC domain with fine-grained access control and the three encryption settings that cannot be added afterwards. Building a public endpoint takes an explicit opt-in, because a public domain with a permissive policy is how this service leaks databases.

terraformAWSaws
aws-opensearchvizier v1.2.0

Verification

Static-verified

Passed: validated and lint-clean (provider-schema-validated for AWS/Azure/GCP; Terraform-language lint elsewhere).

Conformance

  • Static validation (fmt · validate · tflint)
  • Security scan pending (Checkov)
  • Plan tests (mocked: validation rules · outputs)

Provenance

  • SHA-256 checksum
  • Signature (pending)

Functional

  • Live test pending (no cloud run yet)

Last verified 2026-09-12 · how we verify

Use it from the registry

terraform · opentofu
module "opensearch" {
  source  = "www.iac-bazaar.com/iac-bazaar/aws-opensearch/aws"
  version = "1.0.0"
}

Needs a registry token from /account/tokens. The module itself is free; the account is what identifies you. Full setup: registry docs.

Inputs & outputs

Create a free account to read this module's contract

The declared contract - every input name, type, default and description, plus every output - is shown to signed-in accounts, not to anonymous visitors.

A free account sees the contract of every module in the catalogue. There is no subscription and nothing to buy - the modules are free to download, and they run under Vizier.

Documentation

aws-opensearch

An Amazon OpenSearch Service domain, placed in a VPC, with fine-grained access control and the three encryption settings that cannot be added later. Works with Terraform and OpenTofu (>= 1.6), AWS provider >= 6.0, < 7.0.

The failure mode this service is known for is a domain with a public endpoint and a permissive access policy. It has leaked medical records, voter rolls and customer databases, repeatedly, and every time the cause was those two settings together. So:

  • Passing subnet_ids places the domain in a VPC
  • Leaving them null builds a public endpoint, and a precondition refuses that unless allow_public_endpoint = true says you meant it
  • access_policies defaults to unset, so authorization is done by the fine-grained roles inside the domain rather than a policy with a wildcard principal

Three settings are not variables: encryption at rest, node-to-node encryption, and HTTPS enforcement. All three are settable only at creation or through a blue/green deployment, so a domain created without them stays without them.

Fine-grained access control uses an IAM principal (master_user_arn), not the internal user database. An internal master means a password in the state file and a second identity system to rotate.

Preconditions that catch what the API reports late or not at all:

  • instance_count must divide evenly across availability_zones
  • dedicated_master_count must be 3 or 5 - an even number cannot break a tie, and 1 is not a quorum
  • log_types set with no log_group_arn means logs with nowhere to go

dedicated_master_enabled defaults to off, which runs cluster state on the nodes that also serve queries - survivable on a small domain, and the reason the default is cheap rather than safe. The example turns it on, because anything carrying production traffic should.

Verification

Static validation runs tofu fmt, init, validate, tflint and checkov. This module has not yet had a live test, so it is published as statically validated with its live test pending and does not carry the live-tested mark.

Usage code & full reference need an account

The complete copy-paste usage, the full input/output reference, and operational notes are free with an account - shown here and bundled in the download. Sign in and this section fills in.

  • Usage

Related modules