App settings are configuration parameters specific to a particular App App. within a Convox rack. They provide a flexible way to customize the behavior and functionality of an app without affecting the overall rack configuration. This is especially useful for adapting apps to different environments like development, staging, and production.
appSettings:
awsLogs:
cwRetention: 31
disableRetention: false
Currently, the appSettings section supports the awsLogs parameter, but additional parameters may be added in the future.
The awsLogs
section allows you to configure the retention time and policy for the AWS CloudWatch log group associated with your app.
Attribute | Type | Default | Description |
---|---|---|---|
cwRetention | int | 7 | Specifies the retention period in days for CloudWatch logs. |
disableRetention | boolean | false | Indicates whether to disable retention and retain logs indefinitely |
Important Notes: