diff --git a/infra/modules/search/authentication.tf b/infra/modules/search/authentication.tf index cd5b07116..4d118d1bc 100644 --- a/infra/modules/search/authentication.tf +++ b/infra/modules/search/authentication.tf @@ -74,14 +74,6 @@ resource "aws_ssm_parameter" "opensearch_password" { key_id = aws_kms_key.opensearch.arn } -resource "aws_ssm_parameter" "opensearch_username" { - name = "/opensearch/${var.name}/username" - description = "The username for the OpenSearch domain" - type = "SecureString" - value = random_password.opensearch_username.result - key_id = aws_kms_key.opensearch.arn -} - resource "aws_ssm_parameter" "opensearch_endpoint" { name = "/opensearch/${var.name}/endpoint" description = "The endpoint for the OpenSearch domain"