diff --git a/README.md b/README.md index 956c3c7..a4af569 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ Available targets: | [egress\_to\_port](#input\_egress\_to\_port) | [to\_port]DocumentDB initial port range for egress (e.g. `65535`) | `number` | `0` | no | | [enable\_performance\_insights](#input\_enable\_performance\_insights) | Specifies whether to enable Performance Insights for the DB Instance. | `bool` | `false` | no | | [enabled](#input\_enabled) | Set to false to prevent the module from creating any resources | `bool` | `null` | no | -| [enabled\_cloudwatch\_logs\_exports](#input\_enabled\_cloudwatch\_logs\_exports) | List of log types to export to cloudwatch. The following log types are supported: `audit`, `error`, `general`, `slowquery` | `list(string)` | `[]` | no | +| [enabled\_cloudwatch\_logs\_exports](#input\_enabled\_cloudwatch\_logs\_exports) | List of log types to export to cloudwatch. The following log types are supported: `audit`, `profiler` | `list(string)` | `[]` | no | | [engine](#input\_engine) | The name of the database engine to be used for this DB cluster. Defaults to `docdb`. Valid values: `docdb` | `string` | `"docdb"` | no | | [engine\_version](#input\_engine\_version) | The version number of the database engine to use | `string` | `"3.6.0"` | no | | [environment](#input\_environment) | ID element. Usually used for region e.g. 'uw2', 'us-west-2', OR role 'prod', 'staging', 'dev', 'UAT' | `string` | `null` | no | @@ -245,9 +245,9 @@ For additional context, refer to some of these links. > > Use Cloud Posse's ready-to-go [terraform architecture blueprints](https://cloudposse.com/reference-architecture/) for AWS to get up and running quickly. > -> ✅ We build it with you.
-> ✅ You own everything.
-> ✅ Your team wins.
+> ✅ We build it together with your team.
+> ✅ Your team owns everything.
+> ✅ 100% Open Source and backed by fanatical support.
> > Request Quote >
📚 Learn More diff --git a/docs/terraform.md b/docs/terraform.md index bce2522..f8b7c8f 100644 --- a/docs/terraform.md +++ b/docs/terraform.md @@ -66,7 +66,7 @@ | [egress\_to\_port](#input\_egress\_to\_port) | [to\_port]DocumentDB initial port range for egress (e.g. `65535`) | `number` | `0` | no | | [enable\_performance\_insights](#input\_enable\_performance\_insights) | Specifies whether to enable Performance Insights for the DB Instance. | `bool` | `false` | no | | [enabled](#input\_enabled) | Set to false to prevent the module from creating any resources | `bool` | `null` | no | -| [enabled\_cloudwatch\_logs\_exports](#input\_enabled\_cloudwatch\_logs\_exports) | List of log types to export to cloudwatch. The following log types are supported: `audit`, `error`, `general`, `slowquery` | `list(string)` | `[]` | no | +| [enabled\_cloudwatch\_logs\_exports](#input\_enabled\_cloudwatch\_logs\_exports) | List of log types to export to cloudwatch. The following log types are supported: `audit`, `profiler` | `list(string)` | `[]` | no | | [engine](#input\_engine) | The name of the database engine to be used for this DB cluster. Defaults to `docdb`. Valid values: `docdb` | `string` | `"docdb"` | no | | [engine\_version](#input\_engine\_version) | The version number of the database engine to use | `string` | `"3.6.0"` | no | | [environment](#input\_environment) | ID element. Usually used for region e.g. 'uw2', 'us-west-2', OR role 'prod', 'staging', 'dev', 'UAT' | `string` | `null` | no | diff --git a/examples/complete/variables.tf b/examples/complete/variables.tf index e39c39b..b9902ca 100644 --- a/examples/complete/variables.tf +++ b/examples/complete/variables.tf @@ -145,7 +145,7 @@ variable "auto_minor_version_upgrade" { variable "enabled_cloudwatch_logs_exports" { type = list(string) - description = "List of log types to export to cloudwatch. The following log types are supported: `audit`, `error`, `general`, `slowquery`" + description = "List of log types to export to cloudwatch. The following log types are supported: `audit`, `profiler`" default = [] } diff --git a/variables.tf b/variables.tf index c02ea84..5f17a48 100644 --- a/variables.tf +++ b/variables.tf @@ -194,7 +194,7 @@ variable "auto_minor_version_upgrade" { variable "enabled_cloudwatch_logs_exports" { type = list(string) - description = "List of log types to export to cloudwatch. The following log types are supported: `audit`, `error`, `general`, `slowquery`" + description = "List of log types to export to cloudwatch. The following log types are supported: `audit`, `profiler`" default = [] }