From efa3cba4c319c43570baa3de8e441debdcc55e98 Mon Sep 17 00:00:00 2001 From: "Luis M. Gallardo D" Date: Fri, 26 Jun 2020 19:05:15 -0300 Subject: [PATCH] Update outputs description --- README.md | 4 ++-- outputs.tf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 560186b..d405bad 100644 --- a/README.md +++ b/README.md @@ -216,7 +216,7 @@ module "secrets-manager-5" { | Name | Description | |------|-------------| -| rotate\_secret\_arns | Secret arn list | -| rotate\_secret\_ids | Secret id list | +| rotate\_secret\_arns | Rotate secret arn list | +| rotate\_secret\_ids | Rotate secret id list | | secret\_arns | Secret arn list | | secret\_ids | Secret id list | diff --git a/outputs.tf b/outputs.tf index 05a3f48..24223e4 100644 --- a/outputs.tf +++ b/outputs.tf @@ -10,11 +10,11 @@ output "secret_arns" { # Rotate secrets output "rotate_secret_ids" { - description = "Secret id list" + description = "Rotate secret id list" value = aws_secretsmanager_secret.rsm.*.id } output "rotate_secret_arns" { - description = "Secret arn list" + description = "Rotate secret arn list" value = aws_secretsmanager_secret.rsm.*.arn }