From 6559fda2ff5d45ce63bf03c92e891949927864d5 Mon Sep 17 00:00:00 2001 From: xpk Date: Wed, 21 Feb 2024 08:42:56 +0800 Subject: [PATCH] DOC: updated readme and variables --- .../acm-cert-expiry-notice/README.md | 10 +++++----- .../acm-cert-expiry-notice/variables.tf | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/ManagementGovernance/acm-cert-expiry-notice/README.md b/modules/ManagementGovernance/acm-cert-expiry-notice/README.md index 7d8ffcd..fb3ea38 100644 --- a/modules/ManagementGovernance/acm-cert-expiry-notice/README.md +++ b/modules/ManagementGovernance/acm-cert-expiry-notice/README.md @@ -1,5 +1,5 @@ ACM sends daily expiration events for all active certificates (public, private and imported) starting 45 days prior to expiration [1]. -This module sets up event rule and sns notification. +This module sets up event rule and sns notification. Deliver email notifications for expiring certificates, useful for imported certificates. [1] https://docs.aws.amazon.com/acm/latest/userguide/supported-events.html @@ -67,11 +67,11 @@ An error occurred (ValidationException) when calling the PutAccountConfiguration ## Inputs -| Name | Description | Type | Default | Required | -|------|-------------|------|---------|:--------:| -| days-before-expiry | ACM
DaysBeforeExpiry
account configuration | `number` | `45` | no | +| Name | Description | Type | Default | Required | +|------|-----------------------------------------------------|------|---------|:--------:| +| days-before-expiry | ACM DaysBeforeExpiry account configuration | `number` | `45` | no | | email-addresses | Set of email addresses to receive SNS notifications | `set(string)` | n/a | yes | -| res-prefix | Resource name prefix | `string` | `"aws"` | no | +| res-prefix | Resource name prefix | `string` | `"aws"` | no | ## Outputs diff --git a/modules/ManagementGovernance/acm-cert-expiry-notice/variables.tf b/modules/ManagementGovernance/acm-cert-expiry-notice/variables.tf index 2bd3d51..f94886b 100644 --- a/modules/ManagementGovernance/acm-cert-expiry-notice/variables.tf +++ b/modules/ManagementGovernance/acm-cert-expiry-notice/variables.tf @@ -5,7 +5,7 @@ variable "email-addresses" { variable "days-before-expiry" { type = number - description = "ACM ```DaysBeforeExpiry``` account configuration" + description = "ACM DaysBeforeExpiry account configuration" default = 45 }