Skip to content

Commit

Permalink
fix: Correct mis-spelling in serverless security policy default descr…
Browse files Browse the repository at this point in the history
…iption (#16)

Co-authored-by: Dimitri GRISARD <[email protected]>
  • Loading branch information
dim-ops and Dimitri GRISARD authored Jun 28, 2024
1 parent da65a00 commit 844a435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/collection/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ resource "aws_opensearchserverless_security_policy" "encryption" {
resource "aws_opensearchserverless_security_policy" "network" {
count = var.create && var.create_network_policy ? 1 : 0

description = coalesce(var.network_policy_description, "Newtwork policy for ${var.name} collection")
description = coalesce(var.network_policy_description, "Network policy for ${var.name} collection")
name = coalesce(var.network_policy_name, "${var.name}-network")
policy = jsonencode([merge(
{
Expand Down

0 comments on commit 844a435

Please sign in to comment.